I need to check if an integer is divisible by another integer exactly.
If not I would like to round it up to the closest multiple of the number.
Example:
var numberOne = 3
var numberTwo = 5
numberTwo
is not a multiple of numberOne
therefore I would like it to round numberTwo
up to 6.
How would I do this? Thank you