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
added getISOTime as it is relevant to my testing.
var from = new Date(1900, 0, 1).getTime();
var to = new Date(2100, 0, 1).getTime();
function getRandomDate() {
return new Date(from + Math.random() * (to - from));
}
var d1 = getRandomDate()
var d2 = getRandomDate()
Ready to run.
Test | Ops/sec | |
---|---|---|
d1.getTime() === d2.getTime() |
| ready |
+date |
| ready |
d1 - d2 |
| ready |
Number(d1) === Number(d2) |
| ready |
d1.toISOString() === d2.toISOString |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.