From 159fbd0c40e631d7eaafe60b3d1b1d16183e69a8 Mon Sep 17 00:00:00 2001 From: Arthur Verschaeve Date: Sat, 6 Dec 2014 11:38:41 +0100 Subject: [PATCH] javascript-101/operations: Clarify comment Adding quote around an console.log output clarifies that it's actually a string. In this article this really makes sense. --- page/javascript-101/operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/javascript-101/operators.md b/page/javascript-101/operators.md index e26e5e86..01448827 100644 --- a/page/javascript-101/operators.md +++ b/page/javascript-101/operators.md @@ -43,7 +43,7 @@ In JavaScript, numbers and strings will occasionally behave in unexpected ways. var foo = 1; var bar = "2"; -console.log( foo + bar ); // 12 +console.log( foo + bar ); // "12" ``` ```