Test name | Executions per second |
---|---|
Try/catch | 37381.0 Ops/sec |
Without try/catch | 110276.1 Ops/sec |
<div id="test"></div>
try {
JSON.parse('{name":"John", "age":31, "city":"New York"}');
} catch(error) {
console.log(error);
}
if(typeof 5 === 'number') {
console.log('ok')
}