Round a number to a specific number of decimal places:
1.234
→1.2
import {roundTo, roundToUp, roundToDown} from 'round-to'; roundTo(1.234, 2); //=> 1.23 roundToUp(1.234, 2); //=> 1.24 roundToDown(1.234, 2); //=> 1.23
Numbers are rounded to a specific number of fractional digits. Specifying a negative precision
will round to any number of places to the left of the decimal.
roundTo(1234.56, -2); //=> 1200
Specifying an infinite precision
will assume infinite decimal places.
roundTo(0.1231782638, Infinity); //=> 0.1231782638roundTo(number, precision)
Round the decimals with Math.round
.
Round up the decimals with Math.ceil
.
Round down the decimals with Math.floor
.
Type: number
The number to adjust.
Type: number
(Integer or infinity)
The number of decimal places.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4