Tagged Questions
0
votes
4answers
1k views
How to call split(token) on a string that does not contain the token without causing an error?
I have two types of strings as the IDs of elements in my HTML markup:
Dates:
"april-23"
"march-20"
and season names:
"springtime"
"winter"
The dates have a dash separating the month and the ...