javascript map vs jquery map vs jquery each vs javascript every vs javascript forEach
JavaScript performance comparison
Preparation code
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script>
Benchmark.prototype.setup = function() {
testArray = {};
for (var i = 0; i < 100; i++) {
testArray[i] = i;
}
map = function(array, mapFunction) {
var newArray = new Array(array.length);
for (var i in array) {
newArray[i] = mapFunction(array[i]);
}
return newArray;
}
double = function(x) {
return x * 2;
}
};
</script>
Preparation code output
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
javascript map |
|
pending… |
jquery map |
|
pending… |
each |
|
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 najamkhn
- Revision 3: published
- Revision 5: published
0 comments