Home > Article > Web Front-end > How to Rename Variables During Object Destructuring in ES6/ES2015?
In JavaScript, object destructuring allows you to conveniently extract properties from an object into variables. However, what if you want to rename these variables during destructuring?
Instead of the incorrect syntax b as c highlighted in the question, ES6/ES2015 provides a proper way to rename target variables. You can directly assign new variable names using the following syntax:
<code class="js">const {oldName: newName} = object;</code>
For example, the original code:
<code class="js">const b = 6; const test = { a: 1, b: 2 }; const {a, b as c} = test; // Incorrect</code>
can be rewritten correctly as:
<code class="js">const {a, b: c} = test; // Rename b to c</code>
After this, the variables will be assigned as follows:
<code class="js">a === 1 b === 6 // Original value unchanged c === 2</code>
The above is the detailed content of How to Rename Variables During Object Destructuring in ES6/ES2015?. For more information, please follow other related articles on the PHP Chinese website!