Skip to content

Instantly share code, notes, and snippets.

@dpashkevich
Created November 21, 2018 23:00
Show Gist options
  • Save dpashkevich/10b1a21737afc26d7e87f101bccdcc90 to your computer and use it in GitHub Desktop.
Save dpashkevich/10b1a21737afc26d7e87f101bccdcc90 to your computer and use it in GitHub Desktop.
class Greeter {
constructor(message) {
this.greeting = message;
}
greet() {
return "Hello, " + this.greeting;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment