Skip to content

Instantly share code, notes, and snippets.

@kohendrix
Created May 21, 2019 02:35
Show Gist options
  • Save kohendrix/fd206a256fef48a8ed7b31b00d22f9f5 to your computer and use it in GitHub Desktop.
Save kohendrix/fd206a256fef48a8ed7b31b00d22f9f5 to your computer and use it in GitHub Desktop.
simple model
class User {
constructor(name, email) {
this.name = name;
this.email = email;
}
greet() {
return `Hello, my name is ${this.name}`;
}
}
module.exports = User;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment