Answers for "how to limit float with two decimals in javascript"

0

how to limit float with two decimals in javascript

var num1 = parseFloat("10.547892")
var num2 = parseFloat("10.547892").toFixed(2)
console.log("Without using toFixed() method");
console.log(num1);
console.log("Using toFixed() method");
console.log(num2);
Posted by: Guest on July-22-2021

Code answers related to "how to limit float with two decimals in javascript"

Browse Popular Code Answers by Language