Skip to content

Instantly share code, notes, and snippets.

@shallaa
Last active December 1, 2015 15:03
Show Gist options
  • Select an option

  • Save shallaa/eb1dd4cee62c10e1e7a0 to your computer and use it in GitHub Desktop.

Select an option

Save shallaa/eb1dd4cee62c10e1e7a0 to your computer and use it in GitHub Desktop.
var obj = {
a: console.log(this), // --- 1
fn: function() {
console.log(this); // --- 2
function fn() {
console.log(this); // --- 3
}
fn();
}
}
obj.a;
obj.fn();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment