Expand Minimize
This topic has not yet been rated - Rate this topic

parseFloat Method (Windows Scripting - JScript)

Returns a floating-point number converted from a string.

                      parseFloat( 
                      numString 
                      )

The required numString argument is a string that contains a floating-point number.

The parseFloat method returns a numerical value equal to the number contained in numString. If no prefix of numString can be successfully parsed into a floating-point number, NaN (not a number) is returned.

                      parseFloat("abc")      // Returns NaN.
parseFloat("1.2abc")   // Returns 1.2.

You can test for NaN using the isNaN method.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.