Skip to content

Instantly share code, notes, and snippets.

@typeofweb
Created April 2, 2019 14:03
Show Gist options
  • Save typeofweb/a8e5ea46bc07806a478cd0739d544d70 to your computer and use it in GitHub Desktop.
Save typeofweb/a8e5ea46bc07806a478cd0739d544d70 to your computer and use it in GitHub Desktop.
class Singleton {
private constructor() { }
private static instance = new Singleton();
public static getInstance() {
return this.instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment