Test for multiple cases in a switch, like an OR (||) How would you use a switch case when you need to test for a or b in the same case? switch (pageid) { case "listing-page" || "home-page": alert("hello"); break;... May 17, 2022 0 Comments