Guest User

Untitled

a guest
Jan 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. dogsAgeSum = animais.filter((animal) => animal.tipo === 'cao')
  2. .map((cao) => cao.idade *= 7)
  3. .reduce((total, cao) => total += cao)
Add Comment
Please, Sign In to add comment