How do I round a float value to the nearest multiple of \"n\"?
For instance, rounding 21.673 to the nearest multiple of 8 should result in 24.
And, rounding 21.6
It is easy
Math.round(value / n) * n