6.4 객체의 프로퍼티인 함수

메서드(method)

객체의 프로퍼티인 함수

const o2 = {
    name: 'Wallance',
    bark: function() { return "Woof!" }
}

console.log(o2.bark()); // Woof!

Last updated