Skip to content

Latest commit

 

History

History

beginner-reduce-but-grow

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
  • Completed at: 2023-07-10T21:07:32.937Z

  • Completed languages: javascript

  • Tags: Fundamentals, Arrays

  • Rank: 8 kyu

Description

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