diff --git a/1-js/02-first-steps/07-type-conversions/article.md b/1-js/02-first-steps/07-type-conversions/article.md index 3295561419..7b5b09ac02 100644 --- a/1-js/02-first-steps/07-type-conversions/article.md +++ b/1-js/02-first-steps/07-type-conversions/article.md @@ -119,7 +119,7 @@ alert( Boolean(" ") ); // spaces, also true (any non-empty string is true) The three most widely used type conversions are to string, to number, and to boolean. -**`String Conversion`** -- Occurs when we output something. Can be performed with `String(value)`. The conversion to string is usually obvious for primitive values. +**`String Conversion`** -- Occurs automatically when we output a value. Can be performed explicitly with `String(value)`. The conversion to string is usually obvious for primitive values. **`Numeric Conversion`** -- Occurs in math operations. Can be performed with `Number(value)`.