Answers for "how to swap two variable values in js"

3

swap two variables javascript

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

javascript swap variables

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

how to swap two variable values in js

let x = 2;
let y = 4;




document.write("x = " + x + "<br>" )
document.write("y = " + y)
Posted by: Guest on September-28-2021

Code answers related to "how to swap two variable values in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language