In Golang, the expression in switch is optional. If we don't use the expression, the switch statement is true by default. For example:
numberOfDays := 28
switch {
case numberOfDays == 28:
fmt.Println("It's February")
default:
fmt.Println("Not February")
}