DEV Community

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

Posted on

3

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

Top 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