From ab8743f6698e373f32bfc7f1abbbae6d43acc3bc Mon Sep 17 00:00:00 2001 From: pj-szdm <50366990+pj-szdm@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:05:36 +0100 Subject: [PATCH] added comma for a more natural and grammatically correct reading flow --- 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 96a7b622a3..637b0a8d92 100644 --- a/1-js/05-data-types/02-number/article.md +++ b/1-js/05-data-types/02-number/article.md @@ -460,7 +460,7 @@ There are more functions and constants in `Math` object, including trigonometry, To write numbers with many zeroes: -- Append `"e"` with the zeroes count to the number. Like: `123e6` is the same as `123` with 6 zeroes `123000000`. +- Append `"e"` with the zeroes count to the number. Like: `123e6` is the same as `123` with 6 zeroes, i.e. `123000000`. - A negative number after `"e"` causes the number to be divided by 1 with given zeroes. E.g. `123e-6` means `0.000123` (`123` millionths). For different numeral systems: