javascript swap two variables
[a, b] = [b, a];
swap two variables javascript
var a = 1,
b = 2;
b = [a, a = b][0];
swap in javascript
var first = 5;
var second = 7;
[first, second] = [second, first];
console.log(first, second);
//answer - 7 5
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));
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