parseInt Method
Returns an integer converted from a string.
function parseInt(numString : String [, radix : Number]) : Number
- numString
-
Required. A string to convert into a number.
- radix
-
Optional. A value between 2 and 36 indicating the base of the number contained in numString. If not supplied, strings with a prefix of '0x' are considered hexadecimal and strings with a prefix of '0' are considered octal. All other strings are considered decimal.
Show: