我使用的文本编辑器是Smashing The Stack For Fun And Profit.。当我尝试在任何JS文件中使用console.log
时,我遇到错误消息。
1 - 创建/打开JS文件
2 - 键入console.log('hello world');
3 - 保存文件
JSLint问题:
error message in JSLint 'console' was used before it was defined.
答案 0 :(得分:10)
使用devel
选项:
true
如果应该预定义在开发中有用的浏览器全局变量,并且应该允许调试器语句和TODO注释。它添加了与此指令相同的全局变量:/*global alert, confirm, console, prompt */
在投入生产之前,请务必关闭此选项。
因此,在脚本的顶部添加以下行:
/*jslint devel: true */