how does swapping values work javascript. Why doesn't it write over code example
Example 1: javascript swap two variables
[a, b] = [b, a];
Example 2: swap numbers in javascript
let a = 1;
let b = 2;
let temp;
temp = a;a = b;b = temp;
a; // => 2
b; // => 1