What is Switch Statement
Executes statements that match the first case clause until a break statement is encountered.
The primary goal of this evaluation is to figure out whether variables are equivalent to numerous values.
A few things to remember:
- One or N cases values can be used for a switch expression.
- Switch expression type is the only type of case value that can be used. The case value is required to be either literal or constant. Variables are not allowed by it.
- The case values must be distinct.
Flowchart of switch Statement
Visited 1 times, 1 visit(s) today