Skip to content

Instantly share code, notes, and snippets.

@krazov
Last active March 4, 2017 21:13
Show Gist options
  • Save krazov/67e48da85780d662c458272802c67294 to your computer and use it in GitHub Desktop.
Save krazov/67e48da85780d662c458272802c67294 to your computer and use it in GitHub Desktop.
Old school filtering
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var newArray = [];
for (var i = 0; i < array.length; i++) {
if (array[i] % 2 == 0) {
newArray.push(array[i] * 2);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment