swap positions javascript code example
Example 1: javascript swap variables
var a = 5;
var b = 3;
[a, b] = [b, a];
Example 2: swap function javascript
function swap(x, y) {
var t = x;
x = y;
y = t;
return [x, y];
}
console.log(swap(2, 3));