property-value-shorthand

Younghwan Cha·2023년 3월 27일
0

javaScript & typeScript

목록 보기
2/5
post-thumbnail
function makeUser(name, age) {
  return {
    name, // same as name: name
    age,  // same as age: age
    // ...
  };
}

https://javascript.info/object#property-value-shorthand

profile
개발 기록

0개의 댓글