1 out of 3 rated this helpful - Rate this topic

toFixed Method (JavaScript)

Returns a string representing a number in fixed-point notation.

numObj.toFixed([fractionDigits])
numObj

Required A Number object.

fractionDigits

Optional. Number of digits after the decimal point. Must be in the range 0 – 20, inclusive.

The toFixed method returns a string representation of a number in fixed-point notation. The string contains one digit before the significand's decimal point, and must contain fractionDigits digits after it.

If fractionDigits is not supplied or undefined, the toFixed method assumes the value is zero.

Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards. See Version Information.

Applies To: Number Object (JavaScript)

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.