Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36
Chrome 75
Windows
Desktop
5 years ago
Test name Executions per second
Traditional assignment 10964608.0 Ops/sec
Destructuring assignment 1350973.6 Ops/sec
Script Preparation code:
AخA
 
var obj = { a: 1, b: 2, c: 3 } 
Tests:
  • Traditional assignment

     
    var a = obj.a
  • Destructuring assignment

     
    const { a, ...rest } = obj