concised method (메소드 선언문 축약)

ES
비고
오브젝트 메소드 선언문에서 function: 키워드 생략 가능.
Tags
method
shorthand
오브젝트 프롭에 메소드를 할당할 때, function: 키워드를 생략해도 된다.
 
const obj = { name : '한어진', full : function(){ return this.name; }, shorthand (){ return this.name; } }
notion image