Arrondir un nombre pour qu'il soit divisible par 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