10 lines
134 B
JavaScript

function bar(a) {
switch (a) {
case 2:
break;
case 1:
break;
//no default
}
}