Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Last active December 15, 2015 07:49
Show Gist options
  • Save aaronfrost/5226713 to your computer and use it in GitHub Desktop.
Save aaronfrost/5226713 to your computer and use it in GitHub Desktop.
Arrow Function - 1 - Global This
// 1. GLOBAL THIS (ie: window object)
console.log(this);
function foo(){
console.log(this); //logs the window object
}
foo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment