What keyword is used to specify a condition in a switch statement in Go?
- case
- condition
- if
- select
The case keyword is used to specify a condition in a switch statement in Go. It helps in defining different cases and their corresponding actions within the switch statement.
Loading...