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
if( x % 5 == 0 ) { return int( Math.floor( x / 5 ) ) * 5; } else { return ( int( Math.floor( x / 5 ) ) * 5 ) + 5; }
maybe?