console.log((Math.round(5 * 100) / 100).toFixed(2));
console.log((Math.round(819 * 100) / 100).toFixed(2));
console.log((Math.round(3.14159 * 100) / 100).toFixed(2));
console.log((Math.round(187.789 * 100) / 100).toFixed(2));
/*
run:
5.00
819.00
3.14
187.79
*/