JSLint throwing error when using console.log()

16,721

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 */
Share:
16,721
mruss24
Author by

mruss24

Updated on June 17, 2022

Comments

  • mruss24
    mruss24 almost 2 years

    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.

  • mruss24
    mruss24 over 7 years
    Thank you , I added /*jslint devel: true */ to the top of my file.