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

JavaScript
function round5(x)
{
    return Math.ceil(x/5)*5;
}
const roundToNearest5 = x => Math.round(x/5)*5

Source

Also in JavaScript: