[리액트 스타터2] 2장. 자바스크립트 실전
1. 구조 분해 할당 배열이나 객체에서 요소를 해체해 개별 변수에 그 값을 담을 때 사용한다. let arr = [1, 2, 3]; let one = arr[0]; let two = arr[1]; let three = arr[2]; console.log(one, two, three); // 1 2 3 let arr = [1, 2, 3]; let [one, two, three] = arr; ① console.log(one, two, three); // 1 2 3 위는 배열의 구조 분해 할당한 예이다. let arr = [1, 2, 3]; let [one, two] = arr; console.log(one, two); // 1 2 배열의 길이와 할당할 변수의 개수가 일치하지 않..
23-24/React.js 2
2023. 10. 6. 10:00