Merge pull request #11 from AGCB/patch-1

two typos
This commit is contained in:
Ilya Kantor 2017-06-06 14:30:39 +03:00 committed by GitHub
commit ca46cb15b1

View file

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