Codewars pemula - kurangi tetapi tumbuh
function grow(x) {
return x.reduce((res, n) => res * n);
}
Michael Futral
function grow(x) {
return x.reduce((res, n) => res * n);
}