알고리즘 28 - Calculate average

jabae·2021년 10월 19일
0

알고리즘

목록 보기
28/97

Q.

Write a function which calculates the average of the numbers in a given list.

Note: Empty arrays should return 0.

A)

function find_average(array) {
  if (array.length === 0)
    return 0;
  return array.reduce((sum, cur) => sum + cur)/array.length
}
profile
it's me!:)

0개의 댓글