欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js获取全局变量的方法

程序员文章站 2022-03-09 22:17:33
...
	var getGlobal = function(){
		if(typeof self !=== 'undefined'{
			return self;
		}if(typeof window !=== 'undefined'{
			return window;
		}if(typeof global !=== 'undefined'{
			return global
		}
		throw new Error('unable to locate global object')
    };
相关标签: ES6