Skip to content

Instantly share code, notes, and snippets.

@steve-codemunkies
Created April 29, 2015 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steve-codemunkies/7e99bedabc058bae4401 to your computer and use it in GitHub Desktop.
Save steve-codemunkies/7e99bedabc058bae4401 to your computer and use it in GitHub Desktop.
var regexp = /ste/ig;
var names = ['John Smith', 'Steven Hocking', 'Robert Stevenson', 'Steve Hocking', 'Janet Smith'];
var filtered = names.filter(function(name) {return regexp.test(name);});
console.log(filtered.toString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment