constructor argument or member access
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var Thing = function () {};
Thing.prototype.arg = 1;
ui.benchmarks[0].setup = function () {
Thing = function ( arg ) { if ( arg !== undefined ) { this.arg = arg } };
Thing.prototype.arg = 1;
};
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Pass argument |
|
pending… |
Access member |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments