Answers for "how to get value without decimal in javascript"

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 how to take off a decimal

function png(){
    return Math.trunc(Math.random() * 10);
}
//Removes the decimal without rounding
Posted by: Guest on November-05-2020

Code answers related to "how to get value without decimal in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language