Skip to content

Instantly share code, notes, and snippets.

@kishanio
Created May 3, 2017 17:15
Show Gist options
  • Save kishanio/4dfda85108cf1cbabc10763e458c94c0 to your computer and use it in GitHub Desktop.
Save kishanio/4dfda85108cf1cbabc10763e458c94c0 to your computer and use it in GitHub Desktop.
ES5 : Array Filter
var someArr = [10, 5, 3, 55];
console.log( someArr.filter( e => e > 5 )); // [10,55]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment