Public
Script
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Readme

Round numbers with arbitrary decimal precision

1
2
3
4
/** round with abitrary decimal precision */
export function round(number: number, precision = 5) {
return Math.round(number * Math.pow(10, precision)) / Math.pow(10, precision);
}
March 21, 2024