개발일지/Web Development
객체에 함수 타입 저장
jungwonyu
2024. 4. 16. 12:43
728x90
const myClass = {
method1: function() {
console.log('method1 실행');
},
method2: function() {
console.log('method2 실행');
}
};
myClass.method2(); // method2 실행