Answers for "javascript type int to float"

3

javascript int to float

var int = 10;
var float = parseFloat(int).toFixed(2);
console.log(float); // 10.00
var threedots = 8;
var float2 = parseFloat(threedots).toFixed(3);
console.log(float2); // 8.000
Posted by: Guest on June-19-2021
9

javascript convert int to float with 2 decimal places

float_num.toFixed(2);
Posted by: Guest on March-29-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language