I need a utility function that takes in an integer value (ranging from 2 to 5 digits in length) that rounds up to the next multiple of 5 instead of the
const fn = _num =>{ return Math.round(_num)+ (5 -(Math.round(_num)%5)) }
reason for using round is that expected input can be a random number.
Thanks!!!