Merge pull request #640 from caspringer/patch-2

Update article.md
This commit is contained in:
Ilya Kantor 2018-12-05 12:48:57 +03:00 committed by GitHub
commit 045b05ee9e
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 ## 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. **`ToString`** -- Occurs when we output something, can be performed with `String(value)`. The conversion to string is usually obvious for primitive values.