Fallthrough (Programming)
Fallthrough refers to the way execution flows in a switch
statement, whereby once it enters a case
clause, it tips over — that is, falls through — into the next case
clause unless we manually break it using break
.
Fallthrough refers to the way execution flows in a switch
statement, whereby once it enters a case
clause, it tips over — that is, falls through — into the next case
clause unless we manually break it using break
.