Skip to content

Commit

Permalink
Merge pull request javascript-tutorial#639 from caspringer/patch-1
Browse files Browse the repository at this point in the history
Update article.md
  • Loading branch information
iliakan authored Dec 5, 2018
2 parents 045b05e + daa4711 commit 3a95983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-js/02-first-steps/06-type-conversions/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ alert( Number(false) ); // 0
Please note that `null` and `undefined` behave differently here: `null` becomes a zero, while `undefined` becomes `NaN`.

````smart header="Addition '+' concatenates strings"
Almost all mathematical operations convert values to numbers. With a notable exception of the addition `+`. If one of the added values is a string, then another one is also converted to a string.
Almost all mathematical operations convert values to numbers. With a notable exception of the addition `+`. If one of the added values is a string then the other one is also converted to a string.
Then it concatenates (joins) them:
Expand Down

0 comments on commit 3a95983

Please sign in to comment.