Skip to content

Instantly share code, notes, and snippets.

@geraldotech
Created June 19, 2022 23:05
Show Gist options
  • Save geraldotech/cd34c5eb27f7cb50bebf75b181a6d254 to your computer and use it in GitHub Desktop.
Save geraldotech/cd34c5eb27f7cb50bebf75b181a6d254 to your computer and use it in GitHub Desktop.
reduce
const n = [2,4,6,1,7];
x = n.reduce(function (total,el,ind,arr) {
console.log(`index: ${ind}`)
console.log(`total: ${total}`)
console.log(`el: ${el}`)
console.log(`Arr: ${arr}`)
return total+= el;
},0);
console.log(x) //20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment