객체 정의 var healthObj = { name : "달리기", lastTime : "PM10:12", showHealth : function() { console.log(this.name + "님, 오늘은 " + this.lastTime + "에 운동을 하셨네요"); } } healthObj.showHealth(); this 객체 안에서의 this는 그 객체 자신을 가리킴 ES6부터 객체에서 메소드를 사용할 때 function 생략 가능 const obj = { getName() { return this.name; }, setName(name) { this.name = name; } } obj.setName("crong"); const result = obj.getName(); 함수가 실행될 때, ..