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
| // 일반적인 객체 값 추출 방법
let trendTech = {
frontend: 'React',
backend: 'Node',
server: 'linux',
infra: 'AWS Cloud',
getAuthor: function () {
return 'Sarah'
},
}
let trendFrontend = trendTech.frontend
let trendBackend = trendTech.backend
console.log(`트렌드 프론트 기술 ${trendFrontend}, 백엔드 기술 ${trendBackend}`) // 트렌드 프론트 기술 React, 백엔드 기술 Node
// 객체의 비구조화 할당 방법
/*
const { frontend, backend, server, infra } = {
frontend: "React",
backend: "Node",
server: "linux",
infra: "AWS Cloud",
getAuthor: function () {
return "Sarah"
}
}; <- 이것도 가능
*/
const { frontend, backend, server, infra } = trendTech
console.log(`트렌드 프론트 기술 ${frontend}, 백엔드 기술 ${backend}`) // 트렌드 프론트 기술 React, 백엔드 기술 Node
|