CodeWars dla początkujących - zmniejsz, ale rozroś się

function grow(x) {
    return x.reduce((res, n) => res * n);
}
Michael Futral