标签: javascript constructor this
据我所知,我知道函数将this绑定到该函数的调用者。但是,为什么构造函数中的this本身就是变量?
this
var Func = function() { console.log(this); } var newObj = new Func();
功能{}
与普通函数调用不同
var func = function() { console.log(this); } var newObj = func();
窗口...
这是什么原因?谢谢