swap in javascript
var first = 5;
var second = 7;
[first, second] = [second, first];
console.log(first, second);
//answer - 7 5
swap in javascript
var first = 5;
var second = 7;
[first, second] = [second, first];
console.log(first, second);
//answer - 7 5
how do you swap the vaRIables js
let a = "red";
let b = "blue";
let c = a; // red
a = b; //over-rides to blue
b = c;
console.log(a);
console.log(b);
Javascript swap old and new method
//old method
var a = 1;
var b = 2;
var temp = a;
a = b;
b = temp;
console.log(a, b)
//expected output: 2 1
//new method(using destructuring method for swap)
var x = 10;
var y = 20;
[y, x] = [x, y];
console.log(y, x);
//expected output: y = 10 and x = 20
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us