1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 01:51:03 +09:00
ladybird/Libraries/LibJS/Tests/switch-basic.js
2020-04-13 16:28:50 +02:00

10 lines
110 B
JavaScript

switch (1 + 2) {
case 3:
console.log("PASS");
break;
case 5:
case 1:
break;
default:
break;
}