Skip to content

Instantly share code, notes, and snippets.

@Violet-Bora-Lee
Created February 25, 2019 14:16
Show Gist options
  • Save Violet-Bora-Lee/2771b728a60708cad92c1402d3915fd9 to your computer and use it in GitHub Desktop.
Save Violet-Bora-Lee/2771b728a60708cad92c1402d3915fd9 to your computer and use it in GitHub Desktop.
class Developer {
constructor(name){
this.name = name;
}
hello(){
return 'Hello World! I am ' + this.name + ' and I am a web developer';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment