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" ``` ```