From 617dfc7b04be03fde262507aca210f1805e61d34 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sun, 13 Jun 2021 11:46:06 +0300 Subject: [PATCH] minor fixes --- 1-js/02-first-steps/05-types/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/05-types/article.md b/1-js/02-first-steps/05-types/article.md index 66176000..9fba1d8a 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -64,7 +64,7 @@ Special numeric values formally belong to the "number" type. Of course they are We'll see more about working with numbers in the chapter . -## BigInt +## BigInt [#bigint-type] In JavaScript, the "number" type cannot represent integer values larger than (253-1) (that's `9007199254740991`), or less than -(253-1) for negatives. It's a technical limitation caused by their internal representation.