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
const base64 = (arr) => btoa(new TextDecoder().decode(arr))
const allZeros = base64(new Uint8Array(512 * 1024))
let failEarly = new Uint8Array(512 * 1024)
failEarly[10000] = 1
failEarly = base64(failEarly)
let failLate = new Uint8Array(512 * 1024)
failLate[500000] = 1
failLate = base64(failLate)
function isAllZeros(s) {
return /^A*=*$/.test(s)
}
function isNotAllZeros(s) {
return /[^A=]/.test(s)
}
Ready to run.
Test | Ops/sec | |
---|---|---|
isAllZeros - fail early |
| ready |
isAllZeros - fail late |
| ready |
isAllZeros - pass |
| ready |
isNotAllZeros - fail early |
| ready |
isNotAllZeros - fail late |
| ready |
isNotAllZeros - all zeros |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.