Skip to content

Instantly share code, notes, and snippets.

@steve-codemunkies
Created April 29, 2015 13:14
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/fd4048557af2ab7d4b17 to your computer and use it in GitHub Desktop.
Save steve-codemunkies/fd4048557af2ab7d4b17 to your computer and use it in GitHub Desktop.
var regexp = /ste/ig;
var results = [];
for(var i = 0; i < 10; i++) { results.push(regexp.test('Steve Hocking')); }
console.log(results.toString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment