Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save olddustysocksunderthecouch/3bec96c5338853ea6f247edc38f202af to your computer and use it in GitHub Desktop.
Save olddustysocksunderthecouch/3bec96c5338853ea6f247edc38f202af to your computer and use it in GitHub Desktop.
let arr = [1,2,3,4,5,6];
let even = arr.filter(element => {
return element % 2 === 0;
});
// Result: even = [2,4,6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment