The toFixed()
method formats a number using fixed-point notation.
Syntax
numObj.toFixed([digits])
Parameters
digits
- Optional. The number of digits to appear after the decimal point; this may be a value between 0 and 20, inclusive, and implementations may optionally support a larger range of values. If this argument is omitted, it is treated as 0.
Return value
A string representing the given number using fixed-point notation.
Exceptions
RangeError
- If
digits
is too small or too large. Values between 0 and 20, inclusive, will not cause aRangeError
. Implementations are allowed to support larger and smaller values as well. TypeError
- If this method is invoked on an object that is not a
Number
.
Description
toFixed()
returns a string representation of numObj
that does not use exponential notation and has exactly digits
digits after the decimal place. The number is rounded if necessary, and the fractional part is padded with zeros if necessary so that it has the specified length. If numObj
is greater than 1e+21
, this method simply calls Number.prototype.toString()
and returns a string in exponential notation.
Examples
Using toFixed
var numObj = 12345.6789; numObj.toFixed(); // Returns '12346': note rounding, no fractional part numObj.toFixed(1); // Returns '12345.7': note rounding numObj.toFixed(6); // Returns '12345.678900': note added zeros (1.23e+20).toFixed(2); // Returns '123000000000000000000.00' (1.23e-10).toFixed(2); // Returns '0.00' 2.34.toFixed(1); // Returns '2.3' 2.35.toFixed(1); // Returns '2.4'. Note that it rounds up in this case. -2.34.toFixed(1); // Returns -2.3 (due to operator precedence, negative number literals don't return a string...) (-2.34).toFixed(1); // Returns '-2.3' (...unless you use parentheses)
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 3rd Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.5. |
ECMAScript 5.1 (ECMA-262) The definition of 'Number.prototype.toFixed' in that specification. |
Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Number.prototype.toFixed' in that specification. |
Standard | |
ECMAScript Latest Draft (ECMA-262) The definition of 'Number.prototype.toFixed' in that specification. |
Draft |
Browser compatibility
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Feature | Chrome | Firefox | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Edge mobile | Firefox for Android | IE mobile | Opera Android | iOS Safari |
---|---|---|---|---|---|---|---|
Basic Support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
See also
Document Tags and Contributors
Tags:
Contributors to this page:
fscholz,
jameshkramer,
eduardoboucas,
FernandoBasso,
SphinxKnight,
Mingun,
adambrenecki,
Sheppy,
speaktorob,
SonjaElen,
evilpie,
Mgjbot,
Sevenspade,
Ptak82,
Nickolay,
Callek,
Cleaner1912
Last updated by:
fscholz,