Created
July 20, 2018 20:53
-
-
Save awps/ea68f37461d7cf15f2618bb638a8387f to your computer and use it in GitHub Desktop.
This file contains 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 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