Devolver o restante de dois números JavaScript
function remainder(x, y) {
return x % y;
}
Richard Lenane
function remainder(x, y) {
return x % y;
}