Consider the following switch statement: switch( value ) { case 1: return 1; default: value++; // fall-through case 2: return value * 2; ...
-
June 1, 2022
- 0 Comments