Skip to content

Commit 6cc9b62

Browse files
authored
Merge pull request #1647 from CyberMew/patch-8
Update article.md
2 parents 4dcc05d + e62b04a commit 6cc9b62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: 1-js/02-first-steps/06-type-conversions/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ alert( Number(false) ); // 0
8282
Please note that `null` and `undefined` behave differently here: `null` becomes zero while `undefined` becomes `NaN`.
8383

8484
````smart header="Addition '+' concatenates strings"
85-
Almost all mathematical operations convert values to numbers. A notable exception is addition `+`. If one of the added values is a string, the other one is also converted to a string.
85+
Almost all mathematical operations convert values to numbers. A notable exception is the addition `+` operator. If one of the added values is a string, the other one is also converted to a string.
8686
8787
Then, it concatenates (joins) them:
8888

0 commit comments

Comments
 (0)