Created
October 23, 2013 06:50
-
-
Save yuezk/7113704 to your computer and use it in GitHub Desktop.
在use strict模式下得到全局变量(node和浏览器环境通用)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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