Answers for "swap in javascript"

8

javascript swap two variables

[a, b] = [b, a];
Posted by: Guest on July-03-2020
3

swap two variables javascript

var a = 1,
    b = 2;
b = [a, a = b][0];
Posted by: Guest on March-25-2020
2

swap in javascript

var first = 5;
var second = 7;
[first, second] = [second, first];
console.log(first, second);
//answer - 7 5
Posted by: Guest on August-07-2021
4

javascript swap variables

var a = 5;
var b = 3;
[a, b] = [b, a];
Posted by: Guest on May-25-2020
0

swap function javascript

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

console.log(swap(2, 3));
Posted by: Guest on April-24-2020
0

swap function javascript

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

console.log(swap(2, 3));
Posted by: Guest on April-24-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language