-
-
Save ilearnjavascript/93fb82685126f095c35baf624aa51cb6 to your computer and use it in GitHub Desktop.
es6 - classes - 15.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
greet() { | |
super.greet(); // call parent method and then extend it | |
console.log(`And now hands in the air!`); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment