[Javascript] 매개변수에 객체를 구조 분해 할당해서 전달해보자
객체 안의 키(key)를 상수로 사용하고 싶을 때, 구조 분해 할당을 활용해 보자! const students = { apple: "애플", banana: "바나나", orange: "오렌지" } const { apple, banana, orange } = students; //키(key)값 만으로 호출할 수 있게 됨! console.log(apple); //애플 console.log(banana); //바나나 console.log(orange); //오렌지 배열은 인덱스(index)를 기준으로 구조 분해할 수 있다 const user = ["1", "2", "3"] const [ one, two, three ] = user; //즉 배열은 인덱스 기준으로 구조분해 할 수 있다 console.log(on..
2023.02.11