Answers for "parseFloat and toFixed method"

0

parseFloat and toFixed method

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 May-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language