swap two variables in js code example

Example 1: swap two variables javascript

var a = 1,
    b = 2;
b = [a, a = b][0];

Example 2: javascript swap two variables

[a, b] = [b, a];

Example 3: swap function javascript

let a = 1;
let b = 2;
let temp;

temp = a;a = b;b = temp;
a; // => 2
b; // => 1

Example 4: swap function javascript

let a = 1;
let b = 2;

a = a ^ b;b = a ^ b;a = a ^ b;
a; // => 2
b; // => 1

Example 5: how do you swap the vaRIables js

let a = "red";
let b = "blue";
let c = a; // red
a = b; //over-rides to blue
b = c;

console.log(a);
console.log(b);

Example 6: swap function javascript

function swap(x, y) {
    return [y, x];
}

console.log(swap(2, 3));