When using “return” within a “switch … case” statement, do I not require the “break” instruction?
No, break
would be unreachable after return
.
7 Likes
When using “return” within a “switch … case” statement, do I not require the “break” instruction?
No, break
would be unreachable after return
.