运行 logThis(); 会打印什么?
What is the result in the console of running this code? (logThis called without new)
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: medium
分类: JavaScript this
标签: this, global object, window
参考答案摘要
在非严格模式下,普通函数直接调用时 this 默认指向全局对象(浏览器中是 window )。如果是严格模式则会是 undefined 。
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。