Click here to Skip to main content
15,880,392 members
Articles / Programming Languages / Javascript

Quick Tip – JavaScript Namespaces

Rate me:
Please Sign up or sign in to vote.
4.82/5 (7 votes)
27 Jan 2012CPOL2 min read 26K   4  
Quick tip about JavaScript namespaces

Namespaces (or named scopes) are widely used in many programming languages. Namespaces help to group a set of identifiers into a logical group. An identifier can be a named class, named interface or any other language element that is contained inside the namespace. Since the same identifier can be used in more than one namespace but with a different meaning, using namespaces can help reduce name collisions.

Creating a JavaScript Namespace

JavaScript doesn’t include namespaces. On the other hand, JavaScript includes function scopes which means that every function which is created in the JavaScript global scope holds its own scope. With this information in mind, we can mimic namespace scope by creating a function scope. Doing so will help to reduce the number of objects associated with the global scope and help to avoid collisions between identifiers created for an application when using external libraries for example. Here is an example of creating a JavaScript namespace using a function scope:

JavaScript
var ns = ns || {};

The code uses a simple check whether the namespace was declared previously. If the namespace was declared, the left side of the statement is evaluated and the ns variable will include the previously defined namespace. If the namespace wasn’t declared previously, a new object literal (which is another way to create a function in JavaScript) will be created and be set to the ns variable.

Using a JavaScript Namespace

In the previous example, a namespace was declared. In order to use the namespace, you will use its name and create objects/functions inside of it. Here is an example of setting a simple object inside of the previously created namespace:

JavaScript
ns.Game = function (id, name, description) {
    this.id = id;
    this.name = name;
    this.description = description;
};

Now if you want to use the Game object, you will create it using its namespace and its name. Here is an example for that:

JavaScript
var game = new ns.Game(1, 'Kinectimals', 
   'Raise your own cub inside this popular Kinect game');

Summary

Namespaces in JavaScript can help to organize your code into more logical groups/modules. One aspect of using this method is the reducing of objects inside the JavaScript global scope.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead sparXys
Israel Israel
Gil Fink is a web development expert and ASP.Net/IIS Microsoft MVP. He is the founder and owner of sparXys. He is currently consulting for various enterprises and companies, where he helps to develop Web and RIA-based solutions. He conducts lectures and workshops for individuals and enterprises who want to specialize in infrastructure and web development. He is also co-author of several Microsoft Official Courses (MOCs) and training kits, co-author of "Pro Single Page Application Development" book (Apress) and the founder of Front-End.IL Meetup. You can read his publications at his website: http://www.gilfink.net

Comments and Discussions

 
-- There are no messages in this forum --