一道面试题

        var foo ={
		bar:function(){ return this.biz;},
		biz:1
	};
	var t = (function(){
		return typeof arguments[0]();
	})(foo.bar);
	alert(foo.bar);

  最后答案是undefined,可是你知道为什么吗?

原文地址:https://www.cnblogs.com/newh5/p/4836790.html