array splice vs hash delete
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var arr = [],
hash = {},
max = 10,
mid = 5,
n, obj;
for(n = 0 ; n < max ; n++) {
obj = { id: n };
arr.push(obj);
hash[n] = obj;
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
array-splice |
|
pending… |
hash delete |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments