gpt4 book ai didi

javascript - 跳出 while 循环并一次性切换

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:23:46 26 4
gpt4 key购买 nike

有一个similar question关于 C++ 中的这个问题,但我在这里使用 JavaScript。我基本上和另一篇文章中的 OP 处于相同的情况。

var input = prompt();
while(true) {
switch(input) {
case 'hi':
break;
case 'bye':
//I want to break out of the switch and the loop here
break;
}
/*Other code*/
}

有什么办法吗?

我在 /*Other code*/ 部分也有多个开关,代码也应该中断。

最佳答案

在js中break语句可以使用标签

var input = prompt();

outside:
while(true) {
switch(input) {
case 'hi':
break;
case 'bye':
//I want to break out of the switch and the loop here
break outside;
}
/*Other code*/
}

关于javascript - 跳出 while 循环并一次性切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27219087/

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