Merge pull request #2106 from vsemozhetbyt/ch-1-2-5

Sync safe Number borders across chapter 1.2.5
This commit is contained in:
Ilya Kantor 2020-09-12 16:10:43 +03:00 committed by GitHub
commit f95cdc69a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ±2<sup>53</sup>.
- `number` for numbers of any kind: integer or floating-point, integers are limited by <code>±(2<sup>53</sup>-1)</code>.
- `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`.