Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Last active November 10, 2019 15:18
Show Gist options
  • Save ramazankanbur/f8cb4bac6cd297fab040c03bfd12d61a to your computer and use it in GitHub Desktop.
Save ramazankanbur/f8cb4bac6cd297fab040c03bfd12d61a to your computer and use it in GitHub Desktop.
var numbers = [1,2,3,4,5];
var evenList = numbers.filter(function(number){
return number % 2 == 0;
});
console.log(evenList);
//output
[2,4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment