Answers for "swap number in javascript"

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

let a = 1;
let b = 2;

a = a + b;b = a - b;a = a - b;
a; // => 2
b; // => 1
Posted by: Guest on April-24-2020
0

js swap

dmitripavlutin.com › swap-variables-javascript
Posted by: Guest on January-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language