Guest User

Untitled

a guest
Apr 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. var lstInt = [1, 2, 3, 4, 5];
  2.  
  3. var soma = lstInt.reduce(function(total, proximo) {
  4. return total + proximo;
  5. });
  6.  
  7. console.log(soma); //15
Add Comment
Please, Sign In to add comment