Skip to content
Advertisement

How to check if a string starts with one of several prefixes?

I have the following if statement:

JavaScript

I want it to include startsWith Mon Tues Weds Thurs Friday etc. Is there a simple way to this when using strings? I tried || but it didn’t work.

Advertisement

Answer

Do you mean this:

JavaScript

Or you could use regular expression:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement