From 0c4913c367a27eff998af2604eee6890d40c2f49 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 21 Jan 2021 22:51:50 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/08-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/08-operators/article.md b/1-js/02-first-steps/08-operators/article.md index f40f61db..a4958b87 100644 --- a/1-js/02-first-steps/08-operators/article.md +++ b/1-js/02-first-steps/08-operators/article.md @@ -104,7 +104,7 @@ Here's a more complex example: alert(2 + 2 + '1' ); // "41" and not "221" ``` -Here, operators work one after another. The first `+` sums two numbers, so it returns `4`, then the next `+` adds the string `1` to it, so it's like `4 + '1' = 41`. +Here, operators work one after another. The first `+` sums two numbers, so it returns `4`, then the next `+` adds the string `1` to it, so it's like `4 + '1' = '41'`. ```js run alert('1' + 2 + 2); // "122" and not "14"