객체·23 / 32

메서드 — 객체 안의 함수

객체 안에 함수를 넣으면 메서드(method)라고 부릅니다. 메서드 안에서는 this로 그 객체 자신을 가리킵니다.

let wallet = {
  money: 1000,
  spend: function () {
    this.money = this.money - 100;
  },
};
wallet.spend();
console.log(wallet.money); // 900

할 일

this.count를 1 늘리세요

막혔나요?
코드 에디터