DEV Community

Cover image for How to Swap Variables' values Using Array Destructuring
Islam Sayed
Islam Sayed

Posted on

How to Swap Variables' values Using Array Destructuring

You can use array destructuring for easy swapping the values of 2 variables together. Here is how πŸ‘‡

Sie kΓΆnnen die Array-Destrukturierung verwenden, um die Werte von 2 Variablen einfach zu vertauschen. Hier ist, wie πŸ‘‡

let x = 1;
let y = 5;
[x, y] = [y, x];
console.log(x); //5
console.log(y); //1

Latest comments (2)

Collapse
 
esharmony profile image
Matt Barnden

Can you point me to anything to help me understand how this works. I understand what you are doing, but just don't understand the mechanics of it, what is happening in terms of memory etc.

Collapse
 
isalahyt profile image
iSalah-YT

thank u so much