为什么报 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()
因为第三行的
console.log(this)
没有加分号可以简单的运行以下代码,会报同样的错误: