1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2024-10-27 20:34:12 +00:00

Merge pull request #135 from eliottvincent/master

#134 Correct documentation examples
This commit is contained in:
Michael M 2019-07-25 10:40:28 +01:00 committed by GitHub
commit 5a6e1384d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2388,8 +2388,8 @@ x.toPrecision() // '45.6'
y.toPrecision() // '45.6'
x.toPrecision(1) // '5e+1'
y.toPrecision(1) // '5e+1'
y.toPrecision(2, Decimal.ROUND_UP) // '4.6e+1'
y.toPrecision(2, Decimal.DOWN) // '4.5e+1'
y.toPrecision(2, Decimal.ROUND_UP) // '46'
y.toPrecision(2, Decimal.ROUND_DOWN) // '45'
x.toPrecision(5) // '45.600'
y.toPrecision(5) // '45.600'</pre>