Forget Spaces Vs. Tabs, How Do You Format Your Switch Statements?

Forget Spaces Vs. Tabs, How Do You Format Your Switch Statements?
tabs-memes | ProgrammerHumor.io

Content

Braces No Braces Indent Case switch (action) { case "create": case "spawn": { newChild(); break; default: { killAllChildren; } switch (action) { case "create": case "spawn": newChild(); break; default: killAllChildren; Don't Indent Case switch (action) { case "create": case "spawn": { newChild(); break; } default: { killAllChildren); } switch (action) { case "create": case "spawn": newChild); break; default: killAllchildren();