Create a function that takes two numbers as arguments and returns the first number rounded to the nearest number, or a multiple of that number.
roundNearest(17, 10) ➞ 20
roundNearest(36.3) ➞ 36
roundNearest(123, 5) ➞ 125
If no nearest number is given, round the number as you normally would (see example #2).