DEV Community

Discussion on: Singleton in JavaScript

Collapse
 
tomekbuszewski profile image
Tomek Buszewski

Hello Gudla,

You don't. Singleton, by design, is a single instance entity, so destroying it in one place would affect all the code that uses it. If you need destructible instances, don't use singletons.