From e424ad23e5a05da4c5f17b6e9c791b988ae0efa7 Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov Date: Tue, 19 Apr 2022 00:50:41 +0600 Subject: [PATCH] minor grammar fix --- 1-js/05-data-types/02-number/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/02-number/article.md b/1-js/05-data-types/02-number/article.md index afb67989..5a50cd62 100644 --- a/1-js/05-data-types/02-number/article.md +++ b/1-js/05-data-types/02-number/article.md @@ -178,7 +178,7 @@ There are two ways to do so: alert( num.toFixed(1) ); // "12.4" ``` - Please note that result of `toFixed` is a string. If the decimal part is shorter than required, zeroes are appended to the end: + Please note that the result of `toFixed` is a string. If the decimal part is shorter than required, zeroes are appended to the end: ```js run let num = 12.34;