From e74089319f87df3e72b66e7eff9d5bd2037ef6b5 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Sat, 11 Jun 2022 01:36:32 +0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=BE=20add=20break=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1-js/05-data-types/01-primitives-methods/article.md | 1 + 1 file changed, 1 insertion(+) diff --git a/1-js/05-data-types/01-primitives-methods/article.md b/1-js/05-data-types/01-primitives-methods/article.md index eb8406ce..1f6ad047 100644 --- a/1-js/05-data-types/01-primitives-methods/article.md +++ b/1-js/05-data-types/01-primitives-methods/article.md @@ -107,6 +107,7 @@ if (zero) { // zero is true, because it's an object On the other hand, using the same functions `String/Number/Boolean` without `new` is totally same and useful thing. They convert a value to the corresponding type: to a string, a number, or a boolean (primitive). For example, this is entirely valid: + ```js let num = Number("123"); // convert a string to number ```