toFixed()
Number
instance method
JS Home <<
JS Reference <<
Number <<
toFixed()
Description
Returns a string representation of the number in fixed notation.
- When used and there are more digits to display than specified, the fractional return of the answer will be rounded appropriately.
- Object types other than
Number
will throw aTypeError
exception.
Syntax
Signature | Description |
---|---|
aNumber.toFixed([numOfFractionalDigits]) | Returns a string representation of the number in fixed notation. |
Parameters
Parameter | Description |
---|---|
numOfFractionalDigits | An optional integer specifying the number of fractional digits to display.
|
Examples
The code below displays some fixed numerical values.
// Create an array for strings and populate.
var aNumber = 16.456456456;
var stringValue = new Array(4);
stringValue[0] = aNumber.toFixed();
stringValue[1] = aNumber.toFixed(2); // 2 decimal Places
stringValue[2] = aNumber.toFixed(4); // 4 decimal Places
stringValue[3] = aNumber.toFixed(6); // 6 decimal Places
alert(stringValue);
Related Tutorials
JavaScript Advanced Tutorials - Lesson 3 - Number