KIM UhJin

Results 1 comments of KIM UhJin

class Animal { constructor(type, name, sound) { this.type = type; this.name = name; this.sound = sound; } say() { console.log(this.sound); // 이 함수 넣어줘야 합니다. } }