manbavaran
Results
1
comments of
manbavaran
class Animal { constructor(type, name, sound) { this.type = type; this.name = name; this.sound = sound; } say() { console.log(this.sound); } } class Dog extends Animal { constructor(name, sound) {...