From bb159fcac3aa0e6c3efc806d621aad73d11f8d8a Mon Sep 17 00:00:00 2001 From: sawyerrken Date: Tue, 2 Apr 2019 20:45:08 +0100 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 be625f9d..f214a207 100644 --- a/1-js/02-first-steps/06-type-conversions/article.md +++ b/1-js/02-first-steps/06-type-conversions/article.md @@ -30,7 +30,7 @@ alert(typeof value); // string String conversion is mostly obvious. A `false` becomes `"false"`, `null` becomes `"null"`, etc. -## Numberic Conversion +## Numeric Conversion Numeric conversion happens in mathematical functions and expressions automatically.