Skip to content Skip to sidebar Skip to footer
Showing posts with the label Jslint

Using Jslint In Notepad++

I have seen other text editors use extensions to allow syntax checkers such as JSLint, is this poss… Read more Using Jslint In Notepad++

Empty Functions In Javascript

If I have something like this: var blah = function() { }; and then later in code blah is being use… Read more Empty Functions In Javascript

What Side Effects Does The Keyword 'new' Have In Javascript?

I'm working on a plug-in for jQuery and I'm getting this JSLint error: Problem at line 80 c… Read more What Side Effects Does The Keyword 'new' Have In Javascript?

Unexpected 'continue'

I have: while (i Solution 1: From the JSLint docs : continue Statement Avoid use of the con… Read more Unexpected 'continue'