$.each vs for vs for in loop
JavaScript performance comparison
Info
Wanted to run some tests on how fast jQuery's .each() function was versus using a standard JS for loop. I tested a for and a for in loop against .each().
Preparation code
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
var arrayOfStrings = {};
var arrayLength = 50;
for (var i = 0; i <= arrayLength ; i++) {
arrayOfStrings["string" + i] = "String at " + i + " in the array.";
}
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
each() |
|
pending… |
for - standard |
|
pending… |
for in |
|
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 by LocalPCGuy
- Revision 2: published by LocalPCGuy
- Revision 3: published by LocalPCGuy
- Revision 4: published
- Revision 5: published by Trond F
- Revision 6: published by nomiad
0 comments