javascript snumber two decimal places as string

JavaScript
let money = 1.6;

money.toFixed(2); // 1.60

Source

Also in JavaScript: