Microsoft®
JScript parseInt Method |
Language Reference Version 1
|
Converts strings into integers.
parseInt(numstring, [radix])The parseInt method syntax has these parts:
Part Description 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 hexidecimal and strings with a prefix of '0' are considered octal. All other strings are considered decimal.
The parseInt method returns an integer value equal to the number contained in numstring. If no prefix of numstring can be successfully parsed into an integer, NaN (not a number) is returned.parseInt("abc") // Returns NaN. parseInt("12abc") // Returns 12.You can test for NaN using the isNaN method.
The uniary minus and plus operators will also convert a string to a number. E.g. var a = + "123" results in a numeric 123 in a.
<SCRIPT> <!-- var a = "123"; var b = +a; document.write("<PRE>"); document.write("<BR>a is "+a+" and is a "+typeof(a)); document.write("<BR>b is "+b+" and is a "+typeof(b)); document.write("</PRE>"); // --> </SCRIPT>
You can also just use the "+" operator:
+'9.11' // returns 9.11 +'-4' // returns -4 +'0xFF' // returns 255 +true // returns 1 +'123e-5' // returns 0.00123 +false // returns 0 +null // returns 0 +'Infinity' // returns Infinity +'1,234' // returns NaN +dateObject // returns 1542975502981 (timestamp) +momentObject // returns 1542975502981 (timestamp)
However, be aware that + become concatinate as soon as anything preceeds it. e.g. 9 + "1" is "91" not 10. However, 9 - "1" is 8 because -'s other function is negate. So if you like you can do 9- -"1" and get 10. But not 9 --"1" because -- is decrement. Best just use parseInt or parseFloat
file: /Techref/inet/iis/jscript/htm/js421.htm, 4KB, , updated: 2019/3/8 10:34, local time: 2024/11/15 03:28,
18.221.61.135:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://massmind.ecomorder.com/Techref/inet/iis/jscript/htm/js421.htm"> parseInt Method</A> |
Did you find what you needed? |
Welcome to ecomorder.com! |
Welcome to massmind.ecomorder.com! |
.