I couldn\'t find an example here what I\'m really looking for. I\'d like to multiply all array elements, so if an array contains [1,2,3] the sum would be 1*2*3=6; So far I\'
You need to have () when you call the function.
()
Like multiply([1,2,3])
multiply([1,2,3])
Demo here