Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.5k views
in Technique[技术] by (71.8m points)

这里的屏蔽 this 是什么语法?

代码如下,把this屏蔽了,但是没有看懂是什么原因。

var obj = { method: function() { return this; } };
console.log(obj.method() === obj); // true   
console.log((0,obj.method)() === obj); // false

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
var obj = { method: function() { return this; } };
// obj.method():此时显式绑定 this 是 obj,所以是true
console.log(obj.method() === obj); // true 
// 逗号运算符号会返回最后一个运算的结果,是函数function() {return this}
// 此函数执行时,this 是隐式绑定,此时是全局执行上下文,window对象
console.log((0,obj.method)() === obj); // false

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...