for vs array-foreach
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var array = Array(10000).join('x').split('');
function callback(value, index, object) {
return value + index;
}
function customForEach(array, callback, thisArg) {
var fn = callback,
index = -1,
length = array.length;
while (++index < length) {
if (callback(array[index], index, array) === false) {
break;
}
}
return array;
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
custom forEach |
|
pending… |
Array#forEach |
|
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 John-David Dalton
- Revision 4: published by John-David Dalton and last updated
- Revision 5: published
- Revision 6: published by ryun
- Revision 7: published
0 comments