RegExp vs toLowerCase
JavaScript performance comparison
Info
Looks like regular expressions in Chrome are even faster than plain string comparation.
Preparation code
<script>
var a = 'HeLlo wORld', d = a.toLowerCase(), e = /^hello world$/i;
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
RegExp |
|
pending… |
toLowerCase |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published
- Revision 2: published by Vladimir Sitnikov
- Revision 3: published
0 comments