■ 마침표 표기법/대괄호 표기법을 사용해 속성을 참조하는 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 6 7 8 9 10 |
var person = { name : "Lee" }; console.log(person.name); // Lee console.log(person["name"]); // Lee |
■ 마침표 표기법/대괄호 표기법을 사용해 속성을 참조하는 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 6 7 8 9 10 |
var person = { name : "Lee" }; console.log(person.name); // Lee console.log(person["name"]); // Lee |