Script Preparation code:
AخA
 
var object = {
    data: {
        one: {
            two: {
               three: 4
            }
        }
    },
};
Tests:
  • dot

     
    const data = object.data;
    const one = data.one;
    const two = one.two;
    const three = two.three;
  • destructure

     
    const { data } = object;
    const { one } = data;
    const { two } = one;
    const { three } = two;
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    dot
    destructure

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36
Chrome 87 on Windows
View result in a separate tab
Test name Executions per second
dot 8957549.0 Ops/sec
destructure 8872720.0 Ops/sec