Skip to content

Instantly share code, notes, and snippets.

@mauriciosoares
Created July 29, 2014 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauriciosoares/44bb8efd150b746b9445 to your computer and use it in GitHub Desktop.
Save mauriciosoares/44bb8efd150b746b9445 to your computer and use it in GitHub Desktop.
[1,2].forEach(function() {
console.log(this); // window
});
[1,2].forEach(function() {
console.log(this); // {}
}.bind({}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment