From 0287fbd362fa6ca84251324fcf1eeab1aaefee28 Mon Sep 17 00:00:00 2001 From: Sambalim Date: Fri, 3 Apr 2020 08:40:17 +0900 Subject: [PATCH] Change switch Grouping of "case" example Change switch Grouping of "case" example --- 1-js/02-first-steps/13-switch/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/13-switch/article.md b/1-js/02-first-steps/13-switch/article.md index dec40a53..314c6cef 100644 --- a/1-js/02-first-steps/13-switch/article.md +++ b/1-js/02-first-steps/13-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 = 2 + 2; +let a = 3; switch (a) { case 4: