Question: JAVASCRIPT PLEASE Write a multiplicative average function that takes an array of integers as input, multiplies all of the integers together, divides the result by
JAVASCRIPT PLEASE
Write a multiplicative average function that takes an array of integers as input, multiplies all of the integers together, divides the result by the number of entries in the array, and returns the result as a string with the value rounded to three decimal places.
EXAMPLE:
showMultiplicativeAverage([3, 5]); // "7.500" showMultiplicativeAverage([2, 5, 7, 11, 13, 17]); // "28361.667"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
