array values type
JavaScript performance comparison
Info
all int vs with undefined vs hole
Preparation code
<script>
Benchmark.prototype.setup = function() {
var array_of_ints = [0.5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
var array_of_mixed = [0.5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, undefined];
var array_of_mixed2 = [0.5, 1, 2, 3, 4, 5, 6, 7, 8, ,10];
function sum_of_ints() {
var sum = 0;
for (var i = 0; i < array_of_ints.length; i++) {
sum += array_of_ints[i];
}
}
function sum_of_mixed() {
var sum = 0;
for (var i = 0; i < array_of_mixed.length; i++) {
sum += array_of_mixed[i];
}
}
function sum_of_mixed2() {
var sum = 0;
for (var i = 0; i < array_of_mixed2.length; i++) {
sum += array_of_mixed2[i];
}
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
array of ints |
|
pending… |
array of mixed |
|
pending… |
array of mixed with hole |
|
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 DrSlump
- Revision 2: published
- Revision 3: published
- Revision 4: published
- Revision 5: published
- Revision 6: published by Tony
- Revision 7: published by Igor Santos
- Revision 8: published
- Revision 9: published
- Revision 11: published
- Revision 12: published
0 comments