본문 바로가기

Node

구조분해 할당

구조분해 할당

1번

const example = {a: 123, b: {c: 135, d:146}
const a = example.a;
const d = example.b.d;

위의 것을 구조분해

const {a, b: {d}} =example;
console.log(a); //123
console.log(d); //146

2번

arr =[1,2,3,4,5]
const x = arr[0]
const y = arr[1]
const z = arr[4]

위의 것을 구조분해
const [x,y, , ,z] = arr; //비어 있는 것은 객체대입 안하겠다는 의미

'Node' 카테고리의 다른 글

for await(변수 of 프로미스 배열)  (0) 2024.01.24
async function  (0) 2024.01.24
프로미스  (0) 2024.01.24
클래스  (0) 2024.01.24
노드의 특징 및 서버로서의 노드 장단점  (0) 2024.01.24