Skip to content

Instantly share code, notes, and snippets.

@adohe-zz
Created May 4, 2014 06:04
Show Gist options
  • Select an option

  • Save adohe-zz/997f5d4cfdee6c1ce521 to your computer and use it in GitHub Desktop.

Select an option

Save adohe-zz/997f5d4cfdee6c1ce521 to your computer and use it in GitHub Desktop.
Access to the global object in JavaScript
// This should works in ES3, ES5 and ES5-strict
var global = (function () {
return this || (1, eval)('this');
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment