为了账号安全,请及时绑定邮箱和手机立即绑定

一个奇怪的语法错误

一个奇怪的语法错误

慕的地6264312 2018-10-12 13:11:47
为什么报 Uncaught TypeError: console.log(...) is not a function?而另两种方式可以var x = {        fn: function () {            console.log(this)//            !function () {//                console.log(this)//            }();//正确            (function () {                console.log(this);            })();//Uncaught TypeError: console.log(...) is not a function        }    };    (function () {        console.log(this);    })();//正确    x.fn()
查看完整描述

1 回答

?
猛跑小猪

TA贡献1858条经验 获得超8个赞

因为第三行的 console.log(this) 没有加分号

可以简单的运行以下代码,会报同样的错误:

console.log(1)(2);
// Uncaught TypeError: console.log(...) is not a function


查看完整回答
反对 回复 2018-11-17
  • 1 回答
  • 0 关注
  • 448 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信