js number to two digits code example

Example 1: javascript convert int to float with 2 decimal places

float_num.toFixed(2);

Example 2: round number to 2 symbols after comma

let num = Number(0.005) // The Number() only visualizes the type and is not needed
let roundedString = num.toFixed(2); // => "0.01"
let rounded = Number(roudedString); // => 0.01
// toFixed() returns a string (often suitable for printing already)

Example 3: javascript two digits number

var myNumber = 7;
var formattedNumber = ("0" + myNumber).slice(-2);
console.log(formattedNumber);