Cometin'

프로그래머스-평균-구하기 - Javascript

2021-08-18 at Algorithm category

reduce를 이용하여 sum 값을 구한 후, length를 이용하여 평균을 구한 후 반환하여 풀었다.

const solution = (arr) => arr.reduce((a, c) => a + c) / arr.length;

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.