please dont rip this site

Microsoft® JScript™
parseInt Method
 Language Reference 
Version 1 

See Also                  Applies To


Description
Converts strings into integers.
Syntax
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.
Remarks
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 11:34, local time: 2024/4/16 12:01,
TOP NEW HELP FIND: 
3.144.189.177: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?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://ecomorder.com/techref/inet/iis/jscript/htm/js421.htm"> parseInt Method</A>

After you find an appropriate page, you are invited to your to this massmind site! (posts will be visible only to you before review) Just type a nice message (short messages are blocked as spam) in the box and press the Post button. (HTML welcomed, but not the <A tag: Instead, use the link box to link to another page. A tutorial is available Members can login to post directly, become page editors, and be credited for their posts.


Link? Put it here: 
if you want a response, please enter your email address: 
Attn spammers: All posts are reviewed before being made visible to anyone other than the poster.
Did you find what you needed?

 

Welcome to ecomorder.com!

 

Welcome to ecomorder.com!

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

  .