DEV Community

Discussion on: A New Coding Style for Switch Statements in JavaScript/TypeScript

Collapse
 
sovereign313 profile image
sovereign313 • Edited

As someone who comes from a long history of C++, this is how I do it in JS anyway. Forcing scope in c++ is something I've done in the middle of a code block, even, so it's pretty natural in JS to do the same.

Collapse
 
nebrius profile image
Bryan Hughes

That’s a good point!