0
2
llucycodes42
The code block says if the variable "case" is an integer, then the program should break and if it is not, it should continue.
Shortcut: switch
switch () {
case :
break;
default:
}
0
2
llucycodes42
The code block says if the variable "case" is an integer, then the program should break and if it is not, it should continue.
Shortcut: switch
switch () {
case :
break;
default:
}