What is the simplest/cleanest way to implement singleton pattern in JavaScript?
|
feedback
|
protected by Robert Harvey♦ Jan 11 at 18:04
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
I think the easiest way is to declare a simple object literal:
If you want private members on your singleton instance, you can do something like this:
This is has been called the module pattern, it basically allows you to encapsulate private members on an object, by taking advantage of the use of closures. | |||||||||||||||||
feedback
|
|
I think the cleanest approach is something like:
and you can invoke the function as
| |||||
feedback
|
|
There is more than one ways to skin a cat :) Depending on your taste or specific need you can apply any of the proposed solutions. I personally go for CMS' first solution whenever possible (when you don't need privacy). Since the question was about the simplest and cleanest, that's the winner. Or even:
This (quote from my blog) ...
doesn't make much sense (my blog example doesn't either) because it doesn't need any private vars, so it's pretty much the same as:
| |||
|
feedback
|
|
Usually module pattern (see CMS' answer) which is NOT singleton pattern is good enough. However one of the features of singleton is that its initialization is delayed till object is needed. Module pattern lacks this feature. My proposition (CoffeeScript):
Which compiled to this in JavaScript:
Then I can do following:
Note that proposed solution is not thread-safe. It will work great in browser but it may need improvements if | ||||
|
feedback
|