gpt4 book ai didi

javascript - [b][b = a,0] 如何在 a 和 b 之间交换?

转载 作者:数据小太阳 更新时间:2023-10-29 05:13:23 25 4
gpt4 key购买 nike

作为gdoron指出,

var a = "a";
var b = "b";

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

会交换ab,虽然看起来有点hacky,但是已经引发了我的好奇心,我很好奇怎么运行的。这对我来说没有任何意义。

最佳答案

var a = "a";
var b = "b";

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

让我们把最后一行分成几个部分:

[b]       // Puts b in an array - a safe place for the swap.
[b = a] // Assign a in b
[b = a,0] // Assign a in b and return the later expression - 0 with the comma operator.

所以最后是 a =[b][0] - [b] 数组中的第一个对象 => b 赋值到 a

Live DEMO

阅读@am not I am comments in this question:
When is the comma operator useful?
这是他的代码...

关于javascript - [b][b = a,0] 如何在 a 和 b 之间交换?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9864420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com