Closure Prototype Static Performance
JavaScript performance comparison
Info
Test based on this SO question: Javascript prototype operator performance: saves memory, but is it faster?
Preparation code
<script>
Benchmark.prototype.setup = function() {
function X() {};
X.prototype.message = function(s) {
var mymessage = s + "";
};
X.prototype.addition = function(i, j) {
return (i * 2 + j * 2) / 2;
};
function Y() {
this.message = function(s) {
var mymessage = s + "";
}
this.addition = function(i, j) {
return (i * 2 + j * 2) / 2;
}
};
Z = {
message: function(s) {
var mymessage = s + "";
},
addition: function(i, j) {
return (i * 2 + j * 2) / 2;
}
};
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Closure |
|
pending… |
Prototype |
|
pending… |
Static |
|
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 Colin Kraebel
- Revision 2: published
- Revision 3: published by Colin Kraebel and last updated
- Revision 4: published
- Revision 5: published by navaru
- Revision 6: published
- Revision 7: published
- Revision 8: published
- Revision 9: published
0 comments