Skip to content

Instantly share code, notes, and snippets.

@mmiszy
Created April 2, 2019 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmiszy/a8e5ea46bc07806a478cd0739d544d70 to your computer and use it in GitHub Desktop.
Save mmiszy/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