Back to all posts
평균 구하기
Written by ppotatoG & Posted on November 13th, 2021
제출한 답
reduce로 모든 값을 더한 후 num
의 길이로 나눠주기
function solution(num){return num.reduce((a, b) => a + b)/num.length;}
reduce로 모든 값을 더한 후 num
의 길이로 나눠주기
function solution(num){return num.reduce((a, b) => a + b)/num.length;}