Skip to content

Instantly share code, notes, and snippets.

@cianclarke
Created April 30, 2013 19:15
Show Gist options
  • Select an option

  • Save cianclarke/5491158 to your computer and use it in GitHub Desktop.

Select an option

Save cianclarke/5491158 to your computer and use it in GitHub Desktop.
this & Functions
var getName = function() {
console.log("Name is: " + this.name);
};
console.log(getName()); // Undefined
var jos = { name : 'Jos' };
jos.getName = getName;
console.log(jos.getName()); // Name is Jos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment