Answers for "rounding up a number so that it is divisible by 5 javascript"

1

rounding up a number so that it is divisible by 5 javascript

function round5(x)
{
    return Math.ceil(x/5)*5;
}
Posted by: Guest on November-04-2020
0

rounding up a number so that it is divisible by 5 javascript

const roundToNearest5 = x => Math.round(x/5)*5
Posted by: Guest on November-04-2020

Code answers related to "rounding up a number so that it is divisible by 5 javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language