Answers for "take two values after decimal js"

0

get the integer after decimal in javascript

const number = 2.3;
const numberAfterDecimal = parseInt((number % 1).toFixed(2).substring(2));
const numberBeforeDecimal = parseInt(number);

console.log("value before decimal", numberBeforeDecimal);
console.log("value after decimal", numberAfterDecimal);
Posted by: Guest on May-25-2021
0

javascript two decimal places after division

Math.round(num * 100) / 100
//OR to be more specific and to ensure things like 1.005 round correctly, use Number.EPSILON :
Math.round((num + Number.EPSILON) * 100) / 100
Posted by: Guest on April-22-2021

Code answers related to "take two values after decimal js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language