Skip to content

Instantly share code, notes, and snippets.

@wgottschalk
Last active December 5, 2016 07:41
Show Gist options
  • Save wgottschalk/c048b34e8d32cd62c25a to your computer and use it in GitHub Desktop.
Save wgottschalk/c048b34e8d32cd62c25a to your computer and use it in GitHub Desktop.
class Parent {
constructor(name) {
this.name = name;
}
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