Merge pull request #621 from HAKSOAT/patch-1

Update article.md
This commit is contained in:
Ilya Kantor 2018-11-18 23:37:36 +03:00 committed by GitHub
commit c5bd5caec6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ alert( 1 + '2' ); // '12' (string to the right)
alert( '1' + 2 ); // '12' (string to the left)
```
That only happens when one of the arguments is a string. Otherwise, values are converted to numbers.
That only happens when at least one of the arguments is a string. Otherwise, values are converted to numbers.
````
## ToBoolean