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
Here we compare a lookup by index into a typed array versus defining an alias to that element using Object.defineProperty
var Mat1 = function (x) {
var out = new Float32Array(1)
out[0] = x
Object.defineProperty(out, "x", {
get: function () { return out[0] },
set: function (v) { out[0] = v }
})
return out
}
var m = Mat1(5)
Ready to run.
Test | Ops/sec | |
---|---|---|
Lookup by index |
| ready |
Lookup by alias |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.