From 6f4fc2ed5d5460ea86dd32970ef4faad9f058340 Mon Sep 17 00:00:00 2001 From: caspringer Date: Tue, 27 Nov 2018 17:34:53 -0500 Subject: [PATCH] Update article.md --- 1-js/02-first-steps/06-type-conversions/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.