jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
How much faster is a precompiled regex vs a non-precompiled regex?
var preCompiledReplaceRegex = /^(\d{4})-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$/;
myHtml = "2013-02-03";
Ready to run.
Test | Ops/sec | |
---|---|---|
Precompiled Regex (Replace) |
| ready |
Non-Precompiled Regex (Replace) |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.