destr

Benchmark created on


Setup

const obj = {a: { e: { i: 6 } } };

Test runner

Ready to run.

Testing in
TestOps/sec
w/o destr
const i = obj.a.e.i;
console.log(i);
ready
w destr
const { i } = obj.a.e;
console.log(i);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.