JavaScript - 객체구조활당
객체 구조화 활당 구조 분해 할당 구문은 배열이나 객체의 속성을 해체하여 그 값을 개별 변수에 담을 수 있게 하는 JavaScript 표현식입니다. 예시 const obj = { a: 100, b: 200, c: "javascript", }; const { a, b, c } = obj; 객체 구조화 활당 let result = document.querySelector(".sample22_result"); const obj = { a: 100, b: 200, c: "javascript", }; const { a, b, c} = obj; document.write(a); document.write(b); document.write(c); 결과 확인하기 객체 구조 분해 할당 let result = docume..
2022. 9. 20.