Skip to content

Instantly share code, notes, and snippets.

@Violet-Bora-Lee
Created February 25, 2019 14:41
Show Gist options
  • Save Violet-Bora-Lee/4fa6032c667c3a42c2263a3a62772e8c to your computer and use it in GitHub Desktop.
Save Violet-Bora-Lee/4fa6032c667c3a42c2263a3a62772e8c to your computer and use it in GitHub Desktop.
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