Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manekinekko/d0f63644778519950c9f0e0339ee2752 to your computer and use it in GitHub Desktop.
Save manekinekko/d0f63644778519950c9f0e0339ee2752 to your computer and use it in GitHub Desktop.
function Jedi(name) {
this.name = name;
}
Jedi.prototype.toString = function () {
 return 'I am ' + this.name;
};
const luke = new Jedi('luke');
console.log(luke.toString()); //=> 'I am luke'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment