I used below two methods :
Number.prototype.myRound = function (decimalPlaces) { var multiplier = Math.pow(10, decimalPlaces); return (Math.round(th
round() will do the trick.Try This:
round()
var v= Math.round(239.575 * 100) / 100; alert(v);
Working FIddle