round to next 99 javascript code example
Example 1: javascript round to nearest 10
var rounded = Math.round(number / 10) * 10
Example 2: js number round to each 15
Math.ceil(n / 15) * 15
// 3 -> 15, 22 -> 30 etc.
var rounded = Math.round(number / 10) * 10
Math.ceil(n / 15) * 15
// 3 -> 15, 22 -> 30 etc.