Skip to content

Instantly share code, notes, and snippets.

@4e1e0603
Created March 11, 2016 15:21
Show Gist options
  • Save 4e1e0603/806446eb28d94fa17234 to your computer and use it in GitHub Desktop.
Save 4e1e0603/806446eb28d94fa17234 to your computer and use it in GitHub Desktop.
ES6 Singletons: Approach 1
class Person {
constructor() {
this.greeting = 'hello';
}
talk() {
alert(this.greeting);
}
}
let _person = new Person();
export default _person;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment