diff --git a/1-js/02-first-steps/06-type-conversions/article.md b/1-js/02-first-steps/06-type-conversions/article.md index 9f28bc5d..82c7e92f 100644 --- a/1-js/02-first-steps/06-type-conversions/article.md +++ b/1-js/02-first-steps/06-type-conversions/article.md @@ -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.