js swap code example

Example 1: javascript swap two variables

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

Example 2: javascript swap variables

var a = 5;
var b = 3;
[a, b] = [b, a];

Example 3: swap numbers in 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: swap function javascript

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

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

Example 6: js swap

dmitripavlutin.com › swap-variables-javascript

Tags:

Misc Example