two typos

This commit is contained in:
AGCB 2017-06-05 21:56:40 -07:00 committed by GitHub
parent 168b273caa
commit 074151aadf

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