Skip to content

Instantly share code, notes, and snippets.

@gerep
Created January 27, 2022 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gerep/e1fb3b65a1b7bde39d32f4d322e4f5f4 to your computer and use it in GitHub Desktop.
Save gerep/e1fb3b65a1b7bde39d32f4d322e4f5f4 to your computer and use it in GitHub Desktop.
function product(nums){
if(nums.length === 0) {
return 1
}
return nums[0] * product(nums.slice(1))
}
console.log(product([ 1,2,3 ]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment