Skip to content

Instantly share code, notes, and snippets.

@krazov
Created March 4, 2017 21:17
Show Gist options
  • Save krazov/c40415c3b59f67fc3ddf7f2a7bd5cdfc to your computer and use it in GitHub Desktop.
Save krazov/c40415c3b59f67fc3ddf7f2a7bd5cdfc to your computer and use it in GitHub Desktop.
New way filtering
const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const newArray = array
.filter(item => item % 2 == 0)
.map(item => item * 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment