Skip to content

Instantly share code, notes, and snippets.

@juliobetta
Created October 7, 2017 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliobetta/54a2038c30ddb48105002c7b1940e9ab to your computer and use it in GitHub Desktop.
Save juliobetta/54a2038c30ddb48105002c7b1940e9ab to your computer and use it in GitHub Desktop.
const result = (
characters
.filter(character => character.debut >= 1990)
.map(character => character.name)
);
// [
// "Captain Falcon",
// "Fox",
// "Kirby"
// ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment