do not take round off value after decimal javascript code example
Example 1: round number 2 decimals javascript
Math.round((num + Number.EPSILON) * 100) / 100
Example 2: round to decimal javascript
function round(value, precision) {
var multiplier = Math.pow(10, precision || 0);
return Math.round(value * multiplier) / multiplier;
}