Skip to content

Instantly share code, notes, and snippets.

@saml
Last active January 22, 2016 22:15
Show Gist options
  • Save saml/517fbd3ef83635c763b2 to your computer and use it in GitHub Desktop.
Save saml/517fbd3ef83635c763b2 to your computer and use it in GitHub Desktop.
var REGEX = /^((a)+)+$/;
function test(n) {
var input = Array(n).join('a') + 'b';
var id = 'n='+n;
console.log(input);
console.time(id);
REGEX.exec(input);
console.timeEnd(id);
}
for (var i = 1; i < 60; i++) {
test(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment