At this moment I am using a switch case like this:
case 'something':
// Do something
break;
What I would like to do is to have an array or strings like this:
case ['something', 'something too']:
// Do something
break;
Is this possible to do?
If so how?