switch @user && @other
when 'user' && true
...
when 'user2' && false
...
Is something like this possible? It’s not working for some reason. Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s a pity that JS doesn’t think
[1, 2] === [1, 2](since they’re different references); otherwise you could use arrays to do what you want.Instead, here’s a function:
Use it like this:
Depending on what you’re doing, it may be easier to, say, concatenate your multiple values into a string and do a
switchon that.