switch statement to compare values greater or less than a number

Directly it’s not possible but indirectly you can do this

Try like this

switch (true) {
    case (age < 13):
        alert("You must be 13 or older to play");
        break;
    case (age >= 13):
        alert("You are old enough to play");
        break;
}

Here switch will always try to find true value. the case which will return first true it’ll switch to that.

Suppose if age is less then 13 that’s means that case will have true then it’ll switch to that case.

Leave a Comment