You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently i see switch cases to be indented as such. Not sure where I did wrong.
switch(name) {
case 1:
break; //doesn't align with case
case 2:
a = b; //seems normal if there's a statement somewhere
break;
case 3:
if (true) {
} //a if block breaks the indentation
c = d;
break;
}