“JavaScript inicia vários valores” Respostas de código

Startwith Verifique se há Frases Multiply

if (newStr4.startsWith("Mon") || newStr4.startsWith("Tues") || ...)

Or you could use regular expression:

if (newStr4.matches("(Mon|Tues|Wed|Thurs|Fri).*"))
Cute Caterpillar

JavaScript inicia vários valores

hi hi I tried this in Groovvy
["Mon","Tues","Wed","Thurs"].any { newStr.startsWith(it) }

hope it helps
Powerful Peccary

JavaScript múltiplo StartSwith

//There is NO possibility to passing an Array
//like startsWith(["Mon" | "Tues"])
if (newStr4.startsWith("Mon") || newStr4.startsWith("Tues") || ...)

//although you can use regular expression,
//but performance are lower than the solution above
 if (newStr4.matches("(Mon|Tues|Wed|Thurs|Fri).*"))
POG

Respostas semelhantes a “JavaScript inicia vários valores”

Perguntas semelhantes a “JavaScript inicia vários valores”

Mais respostas relacionadas para “JavaScript inicia vários valores” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código