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
Demonstrating the performance hit caused by nested functions and testing against module pattern, without certain module pattern.
<script>
(function() {
// Nested function
person = function(age) {
function getNextAge() {
return age + 1;
}
return getNextAge();
}
// Non nested function inner function
function getNextAge2(age) {
return age + 1;
}
// Non nested function
person2 = function(age) {
return getNextAge2(age);
}
}());
// YUI style (http://www.yuiblog.com/blog/2007/06/12/module-pattern/)
var myNamespace = myNamespace || {};
myNamespace.module1 = (function() {
//"private" method:
var getNextAge3 = function(age) {
return age + 1;
}
return {
person3: function(age) {
return getNextAge3(age);
}
};
}());
// Adding New Functionality to the person4
// http://enterprisejquery.com/2010/10/how-good-c-habits-can-encourage-bad-javascript-habits-part-1/
(function( person4, $, undefined ) {
person4.Age = 0;
//Public Method
person4.getNextAge = function() {
return person4.Age + 1;
};
}( window.person4 = window.person4 || {}, {} ));
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Optimized (No Nesting) |
| ready |
Nested Function |
| ready |
Module Pattern (YUI style (http://www.yuiblog.com/blog/2007/06/12/module-pattern/)) |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.