알고리즘 48 - Sum of positive

박진현·2021년 7월 19일
0

Q.

Description:
You get an array of numbers, return the sum of all of the positives ones.

Example [1,-4,7,12] => 1 + 7 + 12 = 20

Note: if there is nothing to sum, the sum is default to 0.

A)

function positiveSum(arr) {
  return arr.filter(el => el > 0).reduce((a,b) =>  a+b,0)
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글