how to round up number to the nearest 0.5 in javascript code example
Example: Rounding Up To The Nearest Hundred js
function round100 (num1) {
return Math.round(num1/100)*100;
}
function round100 (num1) {
return Math.round(num1/100)*100;
}