Skip to content

Instantly share code, notes, and snippets.

@developandbehappy
Created December 19, 2015 13:14
Show Gist options
  • Select an option

  • Save developandbehappy/d01a88123d5ce36167d6 to your computer and use it in GitHub Desktop.

Select an option

Save developandbehappy/d01a88123d5ce36167d6 to your computer and use it in GitHub Desktop.
var arr = [1,1,2,2,3,3,4,10,10];
var result = arr.filter(function(item) {
return item === 4;
});
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment