console.log((Math.round(2 * 100) / 100).toFixed(2));
console.log((Math.round(782 * 100) / 100).toFixed(2));
console.log((Math.round(3.14159 * 100) / 100).toFixed(2));
console.log((Math.round(183.789 * 100) / 100).toFixed(2));
/*
run:
"2.00"
"782.00"
"3.14"
"183.79"
*/