大岭山网站建设,国外云服务器哪个好,seo黑帽技术,从化定制型网站建设普通模式
普通模式 this 默认指向了Window
function foo() {console.log(this);
}foo(); // Window严格模式
如果开启严格模式use strict#xff0c;this 指向的是 undefined
function foo() {use strict;console.log(this);
}foo(); // undefined普通模式
普通模式 this 默认指向了Window
function foo() {console.log(this);
}foo(); // Window严格模式
如果开启严格模式use strictthis 指向的是 undefined
function foo() {use strict;console.log(this);
}foo(); // undefined