Skip to content

Instantly share code, notes, and snippets.

@yuezk
Created October 23, 2013 06:50
Show Gist options
  • Save yuezk/7113704 to your computer and use it in GitHub Desktop.
Save yuezk/7113704 to your computer and use it in GitHub Desktop.
在use strict模式下得到全局变量(node和浏览器环境通用)
//get the global var in both browser and node etc.
//reference: http://stackoverflow.com/questions/3277182/how-to-get-the-global-object-in-javascript
var Fn = Function, global = Fn('return this')();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment