Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Last active October 20, 2017 14:07
Show Gist options
  • Save isacjunior/cdee5cb18eaaf0e7b4aa0fed9d62c29e to your computer and use it in GitHub Desktop.
Save isacjunior/cdee5cb18eaaf0e7b4aa0fed9d62c29e to your computer and use it in GitHub Desktop.
function mapAge(array) {
const mapped = []
for (let i = 0; i < array.length; i++) {
mapped.push(array[i].age)
}
return mapped
}
const mappedAges = mapAge(users) // [26, 55, 29, 49, 19, 25, 26, 32]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment