gpt4 book ai didi

javascript - 我正在尝试通过 IsFormDisplayed 函数切换 boolean 值

转载 作者:行者123 更新时间:2023-11-28 03:24:13 24 4
gpt4 key购买 nike

嘿,我正在从 调用 IsFormDisplayed 函数。我希望这个函数每次调用时都能在 true 和 false 之间切换。你能告诉我我做错了什么吗?

我已经通过创建 if else 函数进行了尝试。但它保持不变。

我的函数是这样的..这每次都给我错误的值

            let FormCondition = true;
FormCondition = !FormCondition;
console.log(FormCondition);
},```

no error massage[enter image description here][1]


[1]: /image/HE9oQ.png

最佳答案

 let formCondition = true;

function toggle() {
formCondition = !formCondition
console.log(formCondition)
}

toggle()
toggle()

关于javascript - 我正在尝试通过 IsFormDisplayed 函数切换 boolean 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58815708/

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