rounddown in javascript code example
Example 1: rounding off in javascript
var avg=10.55;
console.log(Math.round(avg)); //Prints 11
Example 2: calculate surface of a circle round to the nearest integer javascript
Math.round(Math.PI * radius * radius)