DEV Community

Discussion on: Singleton in JavaScript

Collapse
 
tomekbuszewski profile image
Tomek Buszewski • Edited

I'm not sure I understood you correctly, you mean using this I can create another class that will extend the SingletonClass? Then SingletonClass isn't a singleton, because, by definition, it cannot be extended.

Plus, I have tried something like this and failed, can you provide the code?

Collapse
 
smalluban profile image
Dominik Lubański

I forgot about constructors prototype chain :P

Here you have working example:

Thread Thread
 
tomekbuszewski profile image
Tomek Buszewski

This is not a singleton class now :) But nevertheless, excellent example.