Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript swap two variables

[a, b] = [b, a];
Comment

javascript Swapping Variables

// program to swap variables

let x = 4;
let y = 7;

// swapping variables
[x, y] = [y, x];

console.log(x); // 7
console.log(y); // 4
Comment

swap two variables javascript

var a = 1,
    b = 2;
b = [a, a = b][0];
Comment

javascript swap variables

var a = 5;
var b = 3;
[a, b] = [b, a];
Comment

Swapping variables JS

let a = 1;
let b = 3;

[a, b] = [b, a];
console.log(a); // 3
console.log(b); // 1

const arr = [1,2,3];
[arr[2], arr[1]] = [arr[1], arr[2]];
console.log(arr); // [1,3,2]
Comment

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);
Comment

PREVIOUS NEXT
Code Example
Javascript :: Javascript file in html angeben 
Javascript :: convert number to string date js 
Javascript :: Node Sass could not find a binding for your current environment 
Javascript :: convert iso 8601 to utc javascript 
Javascript :: react typewriter 
Javascript :: replace regex javascript 
Javascript :: drupal 8 get node from form 
Javascript :: remove time from date javascript 
Javascript :: last item in object javascript 
Javascript :: compare dates in js 
Javascript :: usedispatch 
Javascript :: formdata to json 
Javascript :: last element in array javascript 
Javascript :: How to fix CSS & JS not loading issue in cPanel laravel 
Javascript :: remove duplicates from array of objects javascript 
Javascript :: ajax load spesific element from another page 
Javascript :: react-geocode 
Javascript :: javascript clone array of object 
Javascript :: math.rount 
Javascript :: jquery append 
Javascript :: js find in array and remove 
Javascript :: use regex to get urls from string 
Javascript :: javascript padend 
Javascript :: Javascript convert html entity to string 
Javascript :: React Unmounting Lifecycle Method 
Javascript :: js delete all array items 
Javascript :: reload table jquery 
Javascript :: javascript string lentrh 
Javascript :: get buffer from file javascript 
Javascript :: set css variable from javascript 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =