jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jsface.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jsface.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/my.class.js"</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/my.class.js"</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jrclass.js"</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/jrclass.js"</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/klass.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/klass.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/classy.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/classy.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/ptclass.js"</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/lib/ptclass.js"</script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/all.js"></script>
<script src="http://dl.dropbox.com/u/7677927/oop-benchmark/all.js"></script>
<script src="https://raw.github.com/TrinityJS/Classify/master/dist/regular/loose/classify.js"></script>
<script src="https://raw.github.com/weikinhuang/Classify/master/dist/classify.min.js"></script>
<script>
var ClassifyJs = Classify.noConflict();
</script>
<script>
var ClassifyClassPerson = Classify.Class({
initialize: function(name){
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var ClassifyClassFrenchGuy = Classify.Class({
$extends: ClassifyClassPerson,
setAddress: function(city, street) {
this.$super("France", city, street);
}
});
var ClassifyClassParisLover = Classify.Class({
$extends: ClassifyClassFrenchGuy,
setAddress: function(street) {
this.$super('Paris', street);
}
});
var ClassifySuperAlternativeClassPerson = Classify.Class({
initialize: function(name){
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var ClassifySuperAlternativeClassFrenchGuy = Classify.Class({
$extends: ClassifySuperAlternativeClassPerson,
setAddress: function(city, street) {
ClassifySuperAlternativeClassFrenchGuy .$parent.prototype.setAddress.call(this, "France", city, street);
}
});
var ClassifySuperAlternativeClassParisLover = Classify.Class({
$extends: ClassifySuperAlternativeClassFrenchGuy,
setAddress: function(street) {
ClassifySuperAlternativeClassParisLover .$parent.prototype.setAddress.call(this, 'Paris', street);
}
});
</script>
<script>
var ClassifyJsClassPerson = ClassifyJs.create({
init: function(name){
this.name = name;
},
setAddress: function(country, city, street) {
this.country = country;
this.city = city;
this.street = street;
}
});
var ClassifyJsClassFrenchGuy = ClassifyJs.create(ClassifyJsClassPerson, {
setAddress: function(city, street) {
this.parent("France", city, street);
}
});
var ClassifyJsClassParisLover = ClassifyJs.create(ClassifyJsClassFrenchGuy, {
setAddress: function(street) {
this.parent('Paris', street);
}
});
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
JSFace |
| ready |
my.Class |
| ready |
John Resig Class |
| ready |
Klass |
| ready |
Classy |
| ready |
PTClass |
| ready |
Classify |
| ready |
Classify $super alternative |
| ready |
Classify.js |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.