Update article.md

This commit is contained in:
caspringer 2018-11-27 17:34:53 -05:00 committed by GitHub
parent 21a89ce15e
commit 6f4fc2ed5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -127,7 +127,7 @@ alert( Boolean(" ") ); // spaces, also true (any non-empty string is true)
## Summary
There are three most widely used type conversions: to string, to number and to boolean.
The three most widely used type conversions are: to string, to number and to boolean.
**`ToString`** -- Occurs when we output something, can be performed with `String(value)`. The conversion to string is usually obvious for primitive values.