1var a = "foo"; 2 3switch (a + "bar") { 4case 1: 5 break; 6case "foobar": 7case 2: 8 console.log("PASS"); 9 break; 10}