[JavaScript] ES6 문법
1. Property Shorthand// ES6 이전const id = "idid", name = "namename", age = 30;const user = { id: id, name: name, age: age,};console.log(user);// ES6 이후const id = "idid", name = "namename", age = 30;const user = { id, name, age,};console.log(user)객체를 정의할 때 객체의 key값과 value에 할당할 변수명이 같을 경우 value를 생략할 수 있다. 2. Concise Methodconst user = { // info: function () { ..
2024.05.12