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
This test is motivated by the use of duck typing in the current underscore.js implementation for _.isType() functions.
I believe we should not care about the cross frame edge case - take a look at the performance.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
$(document).ready(function($) {
$("#icon_0").click( function(){
var id = $("#ListaMenu");
var ativo = $("#ListaMenu").hasClass("hide")? true : false;
if(ativo == true){
id.removeClass("hide").addClass("show");
}else{
id.removeClass("show").addClass("hide");
}
})
$("#icon_0").bind({
'focusin' : function(Event) {
console.log("ativo");
},
'focusout' : function(Event) {
console.log("saiu");
}
});
});
Ready to run.
Test | Ops/sec | |
---|---|---|
duck typing |
| ready |
instanceof |
| ready |
secure cross frame |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.