Created
February 25, 2019 14:41
-
-
Save Violet-Bora-Lee/4fa6032c667c3a42c2263a3a62772e8c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class ReactDeveloper extends Developer { | |
installReact(){ | |
return 'installing React .. Done.'; | |
} | |
} | |
var nathan = new ReactDeveloper('Nathan'); | |
nathan.hello(); // Hello World! I am Nathan and I am a web developer | |
nathan.installReact(); // installing React .. Done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment