Run
Reset
Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
<!-- HTML -->
/* CSS */
const numArr1 = [33, 41, 12, 16, 25]; const product = numArr1.reduce(productOfArr); //result of multiplication of all array elements function productOfArr(total, value, index, array) { return total * value; } document.write('Result: '+ product);