객체 축약 버전 키 이름과 참조하고 있는 변수 이름이 동일한 경우에는 축약이 가능하다. const x = 0; const y = 0; const coordinate = { x, y }; //{ x: x, y: y }; function makeObj(name, age) { return { name, age, }; }
const x = 0; const y = 0; const coordinate = { x, y }; //{ x: x, y: y };
function makeObj(name, age) { return { name, age, }; }