Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Created October 21, 2017 14:36
Show Gist options
  • Save viniciusdacal/177ecfa5837d2074bd093421d0e22e99 to your computer and use it in GitHub Desktop.
Save viniciusdacal/177ecfa5837d2074bd093421d0e22e99 to your computer and use it in GitHub Desktop.
const users = [
{ name: "Rick", age: 60 },
{ name: "Morty", age: 13 },
{ name: "John Doe", age: 30 }
];
const names = [];
for (var i = 0; i < users.length; i++) {
const name = users[i].name;
names.push(name);
}
// [ 'Rick', 'Morty', 'John Doe' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment