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