Skip to content

Instantly share code, notes, and snippets.

@jacky810124
Created December 25, 2017 19:19
Show Gist options
  • Save jacky810124/19ec6a4548ef481a30b2bd1e2932b79b to your computer and use it in GitHub Desktop.
Save jacky810124/19ec6a4548ef481a30b2bd1e2932b79b to your computer and use it in GitHub Desktop.
function f1() {
return this;
}
// In a browser:
f1() === window; // true
// In Node:
f1() === global; // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment