Skip to content

Instantly share code, notes, and snippets.

@emphaticsunshine
Created August 10, 2012 02:30
Show Gist options
  • Save emphaticsunshine/3310457 to your computer and use it in GitHub Desktop.
Save emphaticsunshine/3310457 to your computer and use it in GitHub Desktop.
Global vs namespacing
/*This is a global variable*/
var name = "Mohit Seth";
var role = "UI Developer";
/*It is how namespacing can be done*/
var NS = {
name: "Mohit Seth",
role: "UI Developer"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment