I've read that rather than simply writing a bunch of functions, I should use object literal.
Can someone explain what the advantages of object literal are with examples, because I don't understand thus far.
Thanks
|
I've read that rather than simply writing a bunch of functions, I should use object literal. Can someone explain what the advantages of object literal are with examples, because I don't understand thus far. Thanks |
||||
|
|
|
As Russ Cam said, you avoid polluting the global namespace, which is very important in these days of combining scripts from multiple locations (TinyMCE, etc.). As Alex Sexton said, it makes for good code organisation as well. If you're using this technique, I'd suggest using the module pattern. This still uses object literals, but as the return value from a scoping function:
External use:
The scoping function is wrapped around all of your functions, and then you call it immediately and store its return value. Advantages:
Example of returning different functions:
|
|||||||||
|
|
Using an object literal (a.k.a. object literal pattern) will not pollute the global namespace as severely as using many functions declared globally will, and also helps to organise code in a logical fashion For example, this object literal
compared to
will create only one property on the global object compared to three. You can then easily use the functions like so
|
|||||
|
|
Rebecca Murphey did a talk on Object Literals at this year's jQuery Conference. One of the best reasons to use them is simply good code organization. Here is Rebecca's write up on the Object Literal Pattern : http://rmurphey.com/blog/2009/10/15/using-objects-to-organize-your-code/ |
|||||
|