Guest User

Untitled

a guest
Jan 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const a = [1, 2, 3, 4, 5], b = [6, 7, 8, 9, 10];
  2. var ab = a.reduce((acumulador, elemento) => acumulador += elemento,
  3. b.reduce((acumulador, elemento) => acumulador += elemento, 0))
  4. console.log(ab);
Add Comment
Please, Sign In to add comment