Merge pull request #135 from eliottvincent/master

#134 Correct documentation examples
pull/148/head
Michael M 5 years ago committed by GitHub
commit 5a6e1384d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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>

Loading…
Cancel
Save