swap function javascript
let a = 1;
let b = 2;
let temp;
temp = a;a = b;b = temp;
a; // => 2
b; // => 1
swap function 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) {
var t = x;
x = y;
y = t;
return [x, y];
}
console.log(swap(2, 3));
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
swap function javascript
let a = 1;
let b = 2;
a = a + b;b = a - b;a = a - b;
a; // => 2
b; // => 1
swap function javascript
let a = 1;
let b = 2;
[a, b] = [b, a];
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