From 59f6d8d0a2d9381d75ba20822ff93528c1314551 Mon Sep 17 00:00:00 2001 From: Brent Guffens Date: Wed, 17 Jan 2018 11:26:56 +0100 Subject: [PATCH] Remove quotes around addition operator --- 1-js/02-first-steps/07-operators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/07-operators/article.md b/1-js/02-first-steps/07-operators/article.md index 4f8d8cec..017f484c 100644 --- a/1-js/02-first-steps/07-operators/article.md +++ b/1-js/02-first-steps/07-operators/article.md @@ -34,7 +34,7 @@ Before we move on, let's grasp the common terminology. Now let's see special features of JavaScript operators that are beyond school arithmetics. -Usually the plus operator `'+'` sums numbers. +Usually the plus operator `+` sums numbers. But if the binary `+` is applied to strings, it merges (concatenates) them: