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
Measuring the performance implications of a try/catch block.
var res = {send:function(body){console.log(body)}}
function simple(req,res){
res.send(req);
}
function pattern(req,res){
try {
res.send(req.body.data);
} catch (e) {
res.send(500);
}
}
Ready to run.
Test | Ops/sec | |
---|---|---|
Plain |
| ready |
Try/Catch Block |
| ready |
Try/Catch Block With Error |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.