Skip to content

Instantly share code, notes, and snippets.

@neonstalwart
Created June 30, 2010 03:25
Show Gist options
  • Save neonstalwart/458201 to your computer and use it in GitHub Desktop.
Save neonstalwart/458201 to your computer and use it in GitHub Desktop.
var start = Date.now(),
i = 1e5;
while(i--){
//'abc'.search(/a/);
//'abc'.match(/a/);
/a/.test('abc');
///a/.exec('abc');
}
console.log(Date.now() - start);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment