javascript swap two variables
[a, b] = [b, a];
swap in javascript
var first = 5;
var second = 7;
[first, second] = [second, first];
console.log(first, second);
//answer - 7 5
swap numbers in javascript
let a = 1;
let b = 2;
let temp;
temp = a;a = b;b = temp;
a; // => 2
b; // => 1
swap function javascript
function swap(x, y) {
return [y, x];
}
console.log(swap(2, 3));
swap function javascript
let a = 1;
let b = 2;
a = a ^ b;b = a ^ b;a = a ^ b;
a; // => 2
b; // => 1
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