Skip to content

Commit 167b881

Browse files
✨ added line spacing for each switch case added
1 parent 882a4b6 commit 167b881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

14-switch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ switch (day) {
4848

4949
//Example using numbers
5050
var i = 5;
51-
5251
switch (i) {
5352
case 1:
5453
console.log("value is 1");
@@ -65,6 +64,7 @@ switch (i) {
6564
case 5:
6665
console.log("value is 5");
6766
break;
67+
6868
default:
6969
console.log("value not found");
7070
}

0 commit comments

Comments
 (0)