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

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

我的功能是这样的..这每次都会给我错误的价值

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

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


  [1]: https://i.stack.imgur.com/HE9oQ.png

最佳答案

 let formCondition = true;

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

 toggle()
 toggle()

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

10-12 01:21