2020년 5월 7일 목요일

destructuring assignment syntax with Arrays

ES6
destructuring assignment syntax with Arrays

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
const items = ['car''bike''plane'];
 
const car = items[0];
const bike = items[1];
const plane = items[2];
 
console.log(car); // 'car'
console.log(bike); // 'bike'
console.log(plane); // 'plane'
 
 
const items = ['car''bike''plane'];
const [car, bike, plane] = items;
 
console.log(car); // 'car'
console.log(bike); // 'bike'
console.log(plane); // 'plane'
 
 
const items = ['car''bike''plane'];
const [,,plane] = items;
 
console.log(plane); // 'plane'
 
 
const items = ['car', ['bike''plane'], ['boat']];
const [car, [bike, plane], [boat]] = items;
 
console.log(car); // 'car'
console.log(bike); // 'bike'
console.log(plane); // 'plane'
console.log(boat); // 'boat'
 
 
const items = ['car''bike''plane''boat'];
const [car, ...transportation] = items;
 
console.log(car); // 'car'
console.log(transportation); // ['bike', 'plane', 'boat']
 
 
const car = {
  brand: 'ferrari',
  type: 'sportscar',
  horsepower: 600,
  wheels: 4
};
 
const { brand: brandName, type: carType } = car;
 
console.log(brandName); // ferrari
console.log(carType); // sportscar
 
 
const car = {
  brand: 'ferrari',
  type: 'sportscar',
  horsepower: 600,
  wheels: 4
};
 
const { brand, type } = car;
 
console.log(brand); // ferrari
console.log(type); // sportscar
 
 
const car = {
  brand: 'ferrari',
  type: 'sportscar',
  engine: { 
    horsepower: 600,
    liters: 4,
    fuel: 'gas'
  },
  wheels: 4
};
 
const { engine: { horsepower } } = car;
 
console.log(horsepower); // 600
 
 
const carFunction = ({ brand, engine: { horsepower, liters }}) => {
  return `${brand} with engine of ${horsepower} horsepower and ${liters} liters`
}
 
const car = {
  brand: 'ferrari',
  type: 'sportscar',
  engine: {
    horsepower: 600,
    liters: 4,
    fuel: 'gas'
  },
  wheels: 4
};
 
console.log(carFunction(car)); // ferrari with engine of 600 horsepower and 4 liters
 
 
 
const getCars = () => {
  return [
    {
      brand: 'ferrari',
      type: 'sportscar',
      engine: {
        horsepower: 600,
        liters: 4,
        fuel: 'gas'
      },
      wheels: 4
    },
    {
      brand: 'porshe',
      type: 'sportscar',
      engine: {
        horsepower: 455,
        liters: 6,
        fuel: 'gas'
      },
      wheels: 4
    },
  ];
}
 
const [ferarri, porshe] = getCars()
console.log(ferarri, porshe);
 
 
 
const getCar = () => {
  return {
    brand: 'ferrari',
    type: 'sportscar',
    engine: {
      horsepower: 600,
      liters: 4,
      fuel: 'gas'
    },
    wheels: 4
  }
}
 
const {brand, type} = getCar()
console.log(brand, type);
 
 
const { session } = require('passport');
session();
 
// instead of
const passport = require('passport');
passport.session();
 
 
cs

댓글 없음:

댓글 쓰기