Answers for "how to find the average of an array with reduce"

3

reduce average javascript

function average(nums) {
  	// nums.length is the important part
    return nums.reduce((a, b) => (a + b)) / nums.length;
}
Posted by: Guest on December-08-2020

Code answers related to "how to find the average of an array with reduce"

Code answers related to "Javascript"

Browse Popular Code Answers by Language