알고리즘 36 - Beginner - Reduce but Grow

jabae·2021년 10월 25일
0

알고리즘

목록 보기
36/97

Q.

Given a non-empty array of integers, return the result of multiplying the values together in order. Example:

[1, 2, 3, 4] => 1 2 3 * 4 = 24

A)

function grow(x){
  return x.reduce((sum, cur)=> sum * cur);
}
profile
it's me!:)

0개의 댓글