TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: TIL JavaScript switch is weird – why?

3 pointsby mangelettiover 8 years ago
Given the following, what do you think the console output will be?<p><pre><code> var x = 1; switch (x) { case 1: console.log(&#x27;case 1&#x27;); case 2: console.log(&#x27;case 2&#x27;); case 3: console.log(&#x27;case 3&#x27;); default: console.log(&#x27;default&#x27;); } </code></pre> Before you raise your hand, yes I&#x27;ve intentionally omitted the break statements.<p>And, the answer is:<p><pre><code> case 1 case 2 case 3 default </code></pre> The switch is designed to execute every case after the first match, which is the reason for placing a `break` after each case.<p>My assumption was always that the `break` was to avoid wasting the interpreter&#x27;s time on checking the remaining cases when you knew they&#x27;d all be non-matches, not that `break` was basically required.<p>This means that the switch statement itself is basically useless without `break`, unless each case is ordered in a 1[2,[3,[4]]] fashion (I imagine that&#x27;s quite rare).<p>Is this just an artifact taken from C, or is there something else I&#x27;m overlooking?

2 comments

richardboegliover 8 years ago
Artifact from C. This is by design for consistency. Java does the same.
davelnewtonover 8 years ago
This is how switch statements work in a <i>lot</i> of curly-brace languages.<p>Intentional fall-through isn&#x27;t as rare as you seem to think, though--not useless at all.