Answers for "js variable swaping"

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language