Skip to content

Instantly share code, notes, and snippets.

@gerep
Created January 27, 2022 03:04
Embed
What would you like to do?
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