Skip to content

Instantly share code, notes, and snippets.

@hattmarris
Created August 19, 2015 22:06
Show Gist options
  • Save hattmarris/7a27ca6fcc5302063f1f to your computer and use it in GitHub Desktop.
Save hattmarris/7a27ca6fcc5302063f1f to your computer and use it in GitHub Desktop.
Array Filter
// Array.prototype.filter
function containsTest(value) {
return value.indexOf('test') != -1;
}
var a = ['a', 'b', 'c', 'a_test'];
var filtered = a.filter(containsTest);
// filtered = ['a_test'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment