Test name | Executions per second |
---|---|
dot | 8957549.0 Ops/sec |
destructure | 8872720.0 Ops/sec |
var object = {
data: {
one: {
two: {
three: 4
}
}
},
};
const data = object.data;
const one = data.one;
const two = one.two;
const three = two.three;
const { data } = object;
const { one } = data;
const { two } = one;
const { three } = two;