Shift and pop
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var array = [ ];
while (array.length < 1008) {
array = array.concat([ "A", "B", "C", "D", "E", "F", "G", "H", "I" ]);
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Shift 1 |
|
pending… |
Pop 1 |
|
pending… |
Shift 2 |
|
pending… |
Pop 2 |
|
pending… |
Shift 3 |
|
pending… |
Pop 3 |
|
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 Jonathan Perry
- Revision 2: published by Jonathan Perry
0 comments