Skip to content

Instantly share code, notes, and snippets.

@cianclarke
Created April 30, 2013 19:17
Show Gist options
  • Save cianclarke/5491180 to your computer and use it in GitHub Desktop.
Save cianclarke/5491180 to your computer and use it in GitHub Desktop.
this & that
var jos = { name : 'Jos' };
jos.getFullName = function(surname) {
var that = this;
var printName = function(surname){
console.log("Full name", this.name + ' ' + this.surname);
console.log("Full name", that.name + ' ' + surname);
}
printName('Parker');
}
jos.getFullName();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment