Закругление числа, чтобы оно делилось на 5 JavaScript
function round5(x)
{
return Math.ceil(x/5)*5;
}
Poised Peccary
function round5(x)
{
return Math.ceil(x/5)*5;
}
const roundToNearest5 = x => Math.round(x/5)*5