What neat ways do you use for declaring JavaScript namespaces. I've come across this one:
if (Foo == null || typeof(Foo) != "object") { var Foo = new Object();}
Is there a more elegant or succinct way of doing this?
Just a bit of fun...
|
|
What neat ways do you use for declaring JavaScript namespaces. I've come across this one: if (Foo == null || typeof(Foo) != "object") { var Foo = new Object();} Is there a more elegant or succinct way of doing this? Just a bit of fun...
|
||||
|
|
|
I like this:
|
||
|
|
|
http://code.google.com/p/namespacedotjs/wiki/HowTo You gotta check that out!! :D |
||
|
|
|
|
Another way to do it, which I consider it to be a little bit less restrictive than the object literal form, is this:
The above is pretty much like the module pattern and whether or not you like it, it allows you to expose all your functions as public, while avoiding the rigid structure of an object literal. |
||||||||
|
|
|
I use this approach:-
External code can then:-
|
||
|
|
|
|
or try this approach: http://weblogs.asp.net/mschwarz/archive/2005/08/26/423699.aspx |
||
|
|