gpt4 book ai didi

javascript - startsWith() 检查不同的字母或字符串

转载 作者:搜寻专家 更新时间:2023-10-30 22:05:46 27 4
gpt4 key购买 nike

有没有办法检查一个字符串是否以不同的字母开头,而不是只检查一次。

下面是我当前的代码:

   myString.startsWith('M') ||
myString.startsWith('L') ||
myString.startsWith('V') ||
myString.startsWith('H')

我希望它像下面这样最小化:

   myString.startsWith('M'|| "L" || "V" || "H") 

关于使用其他方法或适当代码的任何建议。

最佳答案

使用正则表达式:

/^[MLVH]/.test(myString)

阅读和维护起来更快、更容易。

关于javascript - startsWith() 检查不同的字母或字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53828805/

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