Prototype vs Non-Prototype variation
JavaScript performance comparison
Info
Testing the difference in execution time of creating objects using the prototype and not using it.
Preparation code
<script>
Site = {};
Site.prototype.funky= function() {
return "init";
};
Site2 = {
funky: function() {
return "init";
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Prototype |
|
pending… |
Non-Prototype (Nested) |
|
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 Jeremy McPeak (Nettuts)
- Revision 2: published
- Revision 4: published
- Revision 5: published
- Revision 7: published
- Revision 8: published
- Revision 9: published
- Revision 10: published
- Revision 11: published
- Revision 12: published by zc
0 comments