Skip to content

Instantly share code, notes, and snippets.

@Weiyuan-Lane
Created August 2, 2019 17:58
Show Gist options
  • Save Weiyuan-Lane/b903408115e473961a36ff48506e792a to your computer and use it in GitHub Desktop.
Save Weiyuan-Lane/b903408115e473961a36ff48506e792a to your computer and use it in GitHub Desktop.
Creating a singleton using a constructor
export default class StoreSingleton {
static _singleton = null
constructor() {
if (StoreSingleton._singleton === null) {
StoreSingleton._singleton = this
}
return StoreSingleton._singleton
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment