JSLint is a "code quality" tool for JavaScript developed by Douglas Crockford, a well-known developer also responsible for JSON, JSMin, ADSafe and parts of YUI.
Recently, I ran some of my JavaScript code through Crockford's JSLint, and it gave the following error: Problem at line 1 …
javascript syntax jslint use-strictMost of the tutorials that I've read on arrays in JavaScript (including w3schools and devguru) suggest that you can …
javascript arrays jslintOne of the tips for jslint tool is: ++ and -- The ++ (increment) and -- (decrement) operators have been known to …
javascript syntax jslint postfix-operator prefix-operatorI ran JSLint on this JavaScript code and it said: Problem at line 32 character 30: Missing radix parameter. This is the …
javascript jslint radixI include the statement: "use strict"; at the beginning of most of my Javascript files. JSLint has never before warned …
javascript jslintThis is the error I get when using const: <error line="2" column="1" severity="warning" message="'const&…
javascript node.js constants jslint jshintI am currently validating my JavaScript against JSLint and making progress on, it's assisting me to write better JavaScript - …
javascript jslint jshintWhat is the difference between this constructor-based syntax for creating an object: person = new Object() ...and this literal syntax: person = { …
javascript object jslintI used JSLint on a JavaScript file of mine. It threw the error: for( ind in evtListeners ) { Problem at line 41 …
javascript jslintIf I have something like this: var blah = function() { }; and then later in code blah is being used, what is …
javascript jslint