Skip to content

Instantly share code, notes, and snippets.

@4e1e0603
Created March 11, 2016 15:22
Show Gist options
  • Save 4e1e0603/b6b28170b56f16ef51e6 to your computer and use it in GitHub Desktop.
Save 4e1e0603/b6b28170b56f16ef51e6 to your computer and use it in GitHub Desktop.
var greeting = 'hello';
class Person {
constructor() {
throw 'You\'re trying to instantiate a singleton.';
}
static talk() {
alert(greeting);
}
}
export default Person;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment