有没有一种非常简单的方法可以在 javascript 中切换布尔值?
到目前为止,除了编写自定义函数之外,我最好的方法是三元:
bool = bool ? false : true;
bool = !bool;
这适用于大多数语言。