EN
JavaScript - round with precision down-to n decimal places
6
points
In this article, we would like to show you how to round down numbers with precision in JavaScript.
1. Custom method example
// ONLINE-RUNNER:browser;
function floorPrecised(number, precision) {
var power = Math.pow(10, precision);
return Math.floor(number * power) / power;
}
// Examples:
console.log( floorPrecised( 1.1234, 0 ) ); // 1
console.log( floorPrecised( 1.1234, 1 ) ); // 1.1
console.log( floorPrecised( 1.1235, 2 ) ); // 1.12
console.log( floorPrecised( 1.1235, 3 ) ); // 1.123
console.log( floorPrecised( -1.1234, 0 ) ); // -2
console.log( floorPrecised( -1.1234, 1 ) ); // -1.2
console.log( floorPrecised( -1.1234, 2 ) ); // -1.13
console.log( floorPrecised( -1.1234, 3 ) ); // -1.124
console.log( floorPrecised( 1234, -1 ) ); // 1230
console.log( floorPrecised( 1234, -2 ) ); // 1200
console.log( floorPrecised( 1234, -3 ) ); // 1000
console.log( floorPrecised( 5 , 0 ) ); // 5
console.log( floorPrecised( 5. , 0 ) ); // 5
console.log( floorPrecised( .5, 0 ) ); // 0
console.log( floorPrecised( 5_000.000_001, 0 ) ); // 5000
console.log( floorPrecised( 5_000.000_001, 6 ) ); // 5000.000001
console.log( floorPrecised( 5_000.000_001, -3 ) ); // 5000