to round up a value to the nearest increment in javascript using function code example
Example: rounding off in javascript
var avg=10.55;
console.log(Math.round(avg)); //Prints 11
var avg=10.55;
console.log(Math.round(avg)); //Prints 11