Skip to content

Instantly share code, notes, and snippets.

@trsdln
Last active March 12, 2016 08:31
Show Gist options
  • Save trsdln/fb0981e296150132190d to your computer and use it in GitHub Desktop.
Save trsdln/fb0981e296150132190d to your computer and use it in GitHub Desktop.
Simple singleton using ES6
class SingletonTest {
constructor() {
//intialize you singletone here
}
static getInstance() {
if (!SingletoneTest._instance) {
SingletonTest._instance = new SingletonTest();
}
return SingletonTest._instance;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment