Skip to content

Instantly share code, notes, and snippets.

@Violet-Bora-Lee
Created February 25, 2019 14:49
Show Gist options
  • Save Violet-Bora-Lee/de6a1c9fbc4116f422753565db8c3bfb to your computer and use it in GitHub Desktop.
Save Violet-Bora-Lee/de6a1c9fbc4116f422753565db8c3bfb to your computer and use it in GitHub Desktop.
class ReactDeveloper extends Developer {
installReact(){
return 'installing React .. Done.';
}
hello(){
return 'Hello World! I am ' + this.name + ' and I am a REACT developer';
}
}
var nathan = new ReactDeveloper('Nathan');
nathan.hello(); // Hello World! I am Nathan and I am a REACT developer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment