목록2024/05/12 (1)
juni
JS 문법 복습
Attribute 와 Property 차이점Attribute : HTML의 속성 , element에 id / class 와 같은 추가적인 정보 , 정적임Property : DOM의 속성 , 동적임둘이 연결은 되어있지만 Property값을 변경하면 DOM객체만 업데이트 되고 HTML은 업데이트 되지 않아Attribute 값은 그대로임 // Destructuring 구조분해할당// 배열은 위치(index) , 객체는 key가 중요함const person = { name: "르탄이", age: 25, job: "개발자",};const { name, age } = person;console.log(`hi ${name}!, ${age}!!`);const movie = { title: "inception",..
CS
2024. 5. 12. 23:46