mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 19:47:10 +03:00
9 lines
136 B
JavaScript
9 lines
136 B
JavaScript
|
switch (true) {
|
||
|
case boolCondition:
|
||
|
console.log(1);
|
||
|
break;
|
||
|
case false:
|
||
|
console.log(2);
|
||
|
break;
|
||
|
}
|