bulat sampai 2 digit di jQuery

(10.8).toFixed(2); // "10.80"

var num = 2.4;
alert(num.toFixed(2)); // "2.40"
Ankur