I ran JSLint on this JavaScript code and it said:
Problem at line 32 character 30: Missing radix parameter.
This is the code in question:
imageIndex = parseInt(id.substring(id.length - 1))-1;
What is wrong here?
|
I ran JSLint on this JavaScript code and it said:
This is the code in question:
What is wrong here? |
||||
|
It always a good practice to pass radix with parseInt -
For decimal -
If the radix parameter is omitted, JavaScript assumes the following:
|
|||
|
|
|
Adding the following on top of your JS file will tell JSHint to supress the radix warning:
See also: http://jshint.com/docs/#options |
|||
|
|
--> Missing radix parameter <--developer.mozilla.org/en/JavaScript/Reference/Global_Objects/… ... related Why do we need to use radix? – Felix Kling Oct 19 '11 at 9:05jslint missing radix parametergives me this as first result. – Felix Kling Oct 19 '11 at 9:13