From 2e192e03c13c6feef5297289afe56108e0ef3ab7 Mon Sep 17 00:00:00 2001 From: Vse Mozhe Buty Date: Mon, 7 Sep 2020 01:03:53 +0300 Subject: [PATCH] Sync safe Number borders across chapter 1.2.5 --- 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 19e29701..65411fc5 100644 --- a/1-js/02-first-steps/05-types/article.md +++ b/1-js/02-first-steps/05-types/article.md @@ -255,7 +255,7 @@ The last three lines may need additional explanation: There are 8 basic data types in JavaScript. -- `number` for numbers of any kind: integer or floating-point, integers are limited by ±253. +- `number` for numbers of any kind: integer or floating-point, integers are limited by ±(253-1). - `bigint` is for integer numbers of arbitrary length. - `string` for strings. A string may have zero or more characters, there's no separate single-character type. - `boolean` for `true`/`false`.