202108211 [TIL]Javascript - 객체 접근 Dot Notation, Bracket Notation ✅ 자바스크립트에서 객체에 접근하는 2가지 방법 Dot Notation (점 표기법) object.property ' . '(점)을 이용해서 접근 /* Dot Notation으로 value에 접근하는 방법 */ 객체이름.key let myArray = { name : '강당당', age : 30, city : ['busan', 'seoul'], mycheck : true } console.log(myArray.name); // 강당당 console.log(myArray.age); // 30 console.log(myArray.city); // ["busan", "seoul"] console.log(myArray.mycheck); // true Bracket Notation (괄호 표기법) object[p.. 2021. 8. 22. 이전 1 다음