Skip to content

Instantly share code, notes, and snippets.

@kutyel
Created August 14, 2017 12:50
Show Gist options
  • Save kutyel/7057b676f16730a673bea7717bd5a6cc to your computer and use it in GitHub Desktop.
Save kutyel/7057b676f16730a673bea7717bd5a6cc to your computer and use it in GitHub Desktop.
// underscore
_.pluck(dc, 'name')
// nativo
dc.map(x => x.name)
// output
// > ["batman", "superman", "greenarrow", "greenlantern"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment