From 801fa33d2ddb9ce99ccb8463a4ce5319c7f82072 Mon Sep 17 00:00:00 2001 From: Linda Zanchi Date: Sun, 27 Jan 2019 10:28:29 -0500 Subject: [PATCH] update /13-switch/article.md add ; at end of line 151 --- 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 ae114923..908570dd 100644 --- a/1-js/02-first-steps/13-switch/article.md +++ b/1-js/02-first-steps/13-switch/article.md @@ -148,7 +148,7 @@ Let's emphasize that the equality check is always strict. The values must be of For example, let's consider the code: ```js run -let arg = prompt("Enter a value?") +let arg = prompt("Enter a value?"); switch (arg) { case '0': case '1':