gpt4 book ai didi

javascript - 如何在 Javascript 中将多个字符串放入一个案例中?

转载 作者:行者123 更新时间:2023-11-29 16:58:29 26 4
gpt4 key购买 nike

所以我一直在使用 switch 语句,想知道是否有办法将多个字符串放入一个案例中,而不是每个案例只有一个字符串。

例如:

switch(fruits) {
case 'apples','bananas','oranges','strawberries':

//I'd like to get those four fruits into one case, instead of doing this:
switch (fruits) {
case 'apples':
break;
case 'bananas':
break;
case 'oranges':
break;
case 'strawberries':

如果能做到这一点,我会节省很多时间。

最佳答案

像这样使用它:

switch (fruits) {
case 'apples':
case 'bananas':
case 'oranges':
case 'strawberries':
//Your code
break;
}

关于javascript - 如何在 Javascript 中将多个字符串放入一个案例中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30166090/

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