Javascript Dua tempat desimal setelah divisi

Math.round(num * 100) / 100
//OR to be more specific and to ensure things like 1.005 round correctly, use Number.EPSILON :
Math.round((num + Number.EPSILON) * 100) / 100
Gleaming Goat