Hacker News new | ask | show | jobs
by Kiro 4126 days ago
OT but when do you need singletons in JavaScript?
1 comments

Pretty much the same as in any other language. When you want to guarantee that there will only ever be one instance of an object.

It is a useful pattern for managing data synchronization (ie, if I only ever have one instance of a User, I know another instance won't mess up its state accidentally.)