Skip to content

Instantly share code, notes, and snippets.

@DavidMellul
Last active March 10, 2018 13:29
Show Gist options
  • Save DavidMellul/01864604f9182f2af96a1a602de62159 to your computer and use it in GitHub Desktop.
Save DavidMellul/01864604f9182f2af96a1a602de62159 to your computer and use it in GitHub Desktop.
let x = [1,2,3,4,5];
let y = x.filter( element => element % 2 == 0).map(element => element*2);
console.log(y);
// => [4,8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment