I have an array like this:
array = ["123", "456", "#123"]
I want to find the element which contains the substring "#"
. I tried array.includes("#")
and array.indexOf("#")
but it didn't work.
How can I check if any of the strings in this array contain the substring "#"
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…