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>
(function() {
function Animal(name, type) {
this.name = name;
this.type = type;
}
Animal.prototype.setAge = function(years) {
this.years = years;
}
function Horse(name) {
Animal.call(this, name, "mammal");
}
Horse._super_ = Animal.prototype;
Horse.prototype.setAge1 = function(years, months) {
this.months = months;
Horse._super_.setAge.call(this, years);
}
Horse.prototype.setAge2 = function(years, months) {
this.months = months;
_superSetAge.call(this, years);
}
var _superSetAge = Horse._super_.setAge;
window.Horse = Horse;
})();
var horse = new Horse("Speedy");
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
super method not cached |
| ready |
super method cached |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.