Created
April 15, 2021 13:01
-
-
Save wpweb101/8d8da7cf1dcefb871f5f448a7c286d18 to your computer and use it in GitHub Desktop.
JavaScript Blocks and Brackets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
switch ( n ) { | |
case n1: | |
case n2: | |
x(); | |
break; | |
case n3: | |
y(); | |
break; | |
default: | |
z(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment