📜  在javascript代码示例中交换两个没有temp的数字

📅  最后修改于: 2022-03-11 15:01:18.993000             🧑  作者: Mango

代码示例1
let a = 5, b = 6;
[a, b] = [b, a];

// Destructuring Assignment Array Matching