From ec4c434261da410b19e41b262c7e6c08ba693da0 Mon Sep 17 00:00:00 2001 From: Osvaldo Dias dos Santos Date: Tue, 14 Oct 2025 02:47:34 +0100 Subject: [PATCH] fix(switch): correct value in example --- 1-js/02-first-steps/14-switch/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/14-switch/article.md b/1-js/02-first-steps/14-switch/article.md index d86babcec0..efc5f93d2c 100644 --- a/1-js/02-first-steps/14-switch/article.md +++ b/1-js/02-first-steps/14-switch/article.md @@ -117,7 +117,7 @@ Several variants of `case` which share the same code can be grouped. For example, if we want the same code to run for `case 3` and `case 5`: ```js run no-beautify -let a = 3; +let a = 2 + 2; switch (a) { case 4: