Skip to content

Instantly share code, notes, and snippets.

@rrameshbtech
Last active July 25, 2018 17:25
Show Gist options
  • Save rrameshbtech/ca9ac1e9d09cd451264855d3e2511e8b to your computer and use it in GitHub Desktop.
Save rrameshbtech/ca9ac1e9d09cd451264855d3e2511e8b to your computer and use it in GitHub Desktop.
// Run it in Browser
function thisInBrowser() {
console.log(this === window); // true
}
thisInBrowser();
//Run it in Node.js
function thisInNodeJS() {
console.log(this === global); // true
}
thisInNodeJS();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment