Skip to content

Instantly share code, notes, and snippets.

@wgottschalk
Created January 14, 2016 22:41
Show Gist options
  • Save wgottschalk/791134475283f6134c50 to your computer and use it in GitHub Desktop.
Save wgottschalk/791134475283f6134c50 to your computer and use it in GitHub Desktop.
class Parent {
constructor(name) {
this.name = name;
}
}
Parent.prototype.greet = () => {
console.log(`Hi, I'm ${this.name}`);
}
var mom = new Parent("Mom");
mom.greet() // "Hi, I'm Mom"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment