Skip to content

Instantly share code, notes, and snippets.

@awps
Created July 20, 2018 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awps/ea68f37461d7cf15f2618bb638a8387f to your computer and use it in GitHub Desktop.
Save awps/ea68f37461d7cf15f2618bb638a8387f to your computer and use it in GitHub Desktop.
class Person {
constructor($name){
this._name = $name;
}
getName(){
return `Hello ${this._name}`;
}
}
$person = new Person('John');
console.log($person.getName()); // Hello John
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment