JSLint throwing error when using console.log() [duplicate]

天涯浪子 提交于 2019-12-01 19:37:38

问题


The text editor that I am using is Brackets. I am encountering an error message when I try to use console.log in any JS file.

1 - Create/Open an JS file

2 - Type console.log('hello world');

3 - Save the file

JSLint Problem:

error message in JSLint 'console' was used before it was defined.


回答1:


Use the devel option:

true if browser globals that are useful in development should be predefined, and if debugger statements and TODO comments should be allowed. It adds the same globals as this directive:

/*global
alert, confirm, console, prompt
*/

Be sure to turn this option off before going into production.

So at the top of your script add this line:

 /*jslint devel: true */


来源:https://stackoverflow.com/questions/40816924/jslint-throwing-error-when-using-console-log

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!