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="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
function getSecond (day){
return (day % 100) % 60;
}
function getQMinute(day) {
var second = getSecond(day);
if(second < 15)
return 1;
if(second < 30)
return 2;
if(second < 45)
return 3;
return 4;
}
Ready to run.
Test | Ops/sec | |
---|---|---|
method |
| ready |
+1 |
| ready |
ceil |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.