JSLint: Using a function before it’s defined error

As this is the top rated google hit and other people might not be seeing it at first in the jslint tool, there is a option called “Tolerate misordered definitions” that allows you to hide this type of error.

/*jslint latedef:false*/

Leave a Comment