Skip to content

Instantly share code, notes, and snippets.

@fronterior
Created October 6, 2022 15:48
Show Gist options
  • Save fronterior/e97a69f3b416529ea06739837b72be31 to your computer and use it in GitHub Desktop.
Save fronterior/e97a69f3b416529ea06739837b72be31 to your computer and use it in GitHub Desktop.
class Singleton {
static #instance = null;
constructor() {
if (this.constructor.#instance) return this.constructor.#instance;
else this.constructor.#instance = this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment