Skip to content

Instantly share code, notes, and snippets.

@pangers
Created January 23, 2016 09:42
Show Gist options
  • Save pangers/a3a9ebc72df3014a74a1 to your computer and use it in GitHub Desktop.
Save pangers/a3a9ebc72df3014a74a1 to your computer and use it in GitHub Desktop.
var vet = {
dog: "Max",
returnMax: function() {
return this.dog;
}
}
vet.returnMax(); // "Max"
var newReturnMax = vet.returnMax;
newReturnMax(); // returns the dog property of the global object, otherwise returns undefined.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment