var test = {
firstName:"Luke",
lastName:"Lee",
};
test.firstName;//Luke
test['firstName'];// Luke
var test = {
firstName:"Luke",
lastName:"Lee",
body:{
height:180,
weight:80,
}
};
test.body.height//180
delete test.body.weight//삭제
var test = new Object();
test.first = "first";
test.last = "last";
test.body = new Object();
test.body.height = 180;
test.body.weight = 80;
var arr = [1,2,3];
[]
를 사용하는게 권장사항이다.var array = new Array();
array[0] = 1;
array[1] = 'Hello';
[]
만 사용해서 만든 배열을 배열 리터럴이라고 한다.출처 : 제로초 블로그
https://www.zerocho.com/category/JavaScript/post/572c6f759a5f1c4db2481ee3