30秒学会 JavaScript 片段 · 2023年6月1日

30秒学会 JavaScript 片段 – How to swap two variables in JavaScript

In the past, swapping the values of two variables in JavaScript required an intermediate variable to store one of the values while swapping, which would result in something similar to this:

代码实现

let a = 10;
let b = 20;

let tmp;
tmp = a;
a = b;
b = tmp;

While this approach still works, there are more elegant and less verbose options available to us nowadays. For example, JavaScript ES6 introduced destructuring assignments, allowing individual array items to be assigned to variables in a single statement. Here’s what that looks like:

使用样例

const [x, y] = [1, 2];

Destructuring assignments are extremely useful in a handful of situations, including swapping two variables. To accomplish this, we can create an array from the two variables, then use a destructuring assignment to reassign them to each other:

let a = 10;
let b = 20;

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

翻译自:https://www.30secondsofcode.org/js/s/swap-two-variables