Object Literal Notation
객체리터럴의 형식
let a = {
name: 'lee'
age: '29'
hobby: {
day: workout
night: study
}
}
key(속성)와 value(값)가 쌍으로 이루어진 형식
문자열,숫자,식별자 이름을 키로 사용할 수 있으며, ES6부터 키를 계산할 수 있다.
(예시)
var anObject = {
property1 : true,
showMessage : function (msg) { alert(msg) }
};
var a, b, rest;
[a, b] = [10, 20];
console.log(a); // 10
console.log(b); // 20
[a, b, ...rest] = [10, 20, 30, 40, 50];
console.log(a); // 10
console.log(b); // 20
console.log(rest); // [30, 40, 50]
({ a, b } = { a: 10, b: 20 });
console.log(a); // 10
console.log(b); // 20
// Stage 4(finished) proposal
({a, b, ...rest} = {a: 10, b: 20, c: 30, d: 40});
console.log(a); // 10
console.log(b); // 20
console.log(rest); // {c: 30, d: 40}