标签: javascript ecmascript-6
我有两个变量,我想在不使用第三个变量的情况下交换它们。
前:
let a = 'value1', b = 'value2';
结果:
a = 'value2', b = 'value1'
这可能吗?