Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active October 22, 2017 22:25
Show Gist options
  • Save viniciusdacal/fd06577979ef0b6995beb24d98587b53 to your computer and use it in GitHub Desktop.
Save viniciusdacal/fd06577979ef0b6995beb24d98587b53 to your computer and use it in GitHub Desktop.
const users = [
{ name: "Rick", age: 60 },
{ name: "Morty", age: 14 },
{ name: "John Doe", age: 30 }
];
const names = users.map(user => user.name);
// [ 'Rick', 'Morty', 'John Doe' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment