Created
March 23, 2018 23:09
-
-
Save Dammmien/f76b304a51b23b1bc9059330c84d0caa to your computer and use it in GitHub Desktop.
JavaScript Singleton design pattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Singleton { | |
constructor() { | |
if (typeof Singleton.instance === 'object') { | |
return Singleton.instance; | |
} | |
Singleton.instance = this; | |
return this; | |
} | |
} | |
const instance = new Singleton(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment