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
let CONVERTOR = new BigInt64Array(1)
function __lesser__(i, end){
return i.value < end.value;
}
function __impl_add__(i, step) {
i.value += step.value
return {type:"int", value: i.value}
}
function __mod__(i, step) {
return {type:"int", value: i.value % step.value }
}1
Ready to run.
Test | Ops/sec | |
---|---|---|
For loop |
| ready |
Bigint |
| ready |
BigIntArray |
| ready |
BigIntArray II |
| ready |
For loop i is bigint |
| ready |
For loop i is BigInt64Array |
| ready |
BigIntArray III |
| ready |
Brython |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.