Skip to content

Instantly share code, notes, and snippets.

@macklinu
Last active May 25, 2018 19:00
Show Gist options
  • Save macklinu/00353d30ddb48b16c3b0bd536549fedd to your computer and use it in GitHub Desktop.
Save macklinu/00353d30ddb48b16c3b0bd536549fedd to your computer and use it in GitHub Desktop.
var person = {
name: "Ben",
print: function() {
var self = this;
console.log(this.name);
(function() {
console.log(this.name);
console.log(self.name);
})();
}
};
person.print();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment