Run ❯
Get your own website
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
// Parent class class Animal { constructor(name) { this.name = name; } speak() { return `${this.name} makes a sound.`; } } // Child class class Dog extends Animal { speak() { return `${this.name} barks!`; } } const dog = new Dog('Rex'); console.log(dog.speak());
Rex barks!