Constructor Public Methods
JavaScript performance comparison
Info
Using prototype public methods vs. initialize public methods in a function constructor.
Preparation code
<script>
function ConstructorPublicMethods() {
this.publicMethod1 = function(n) {
return 2 * n;
};
this.publicMethod2 = function(n) {
return 3 * n;
};
}
function PrototypePublicMethods() {}
PrototypePublicMethods.prototype = {
publicMethod1: function(n) {
return 2 * n;
},
publicMethod2: function(n) {
return 3 * n;
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
instanciate constructor public methods |
|
pending… |
instanciate prototype public methods |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments