We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5886ac3 + 8441c00 commit c5bd5caCopy full SHA for c5bd5ca
1-js/02-first-steps/06-type-conversions/article.md
@@ -91,7 +91,7 @@ alert( 1 + '2' ); // '12' (string to the right)
91
alert( '1' + 2 ); // '12' (string to the left)
92
```
93
94
-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.
95
````
96
97
## ToBoolean
0 commit comments