Skip to content

Commit 3dbd7f4

Browse files
committed
chore updated
1 parent 49303b5 commit 3dbd7f4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ node .\src\math-and-stats\integer-division.js
589589
![ ](https://imgur.com/Cf7cz4W.png)
590590

591591
## JavaScript Fundamentals
592+
592593
### Array slice
593594

594595
Slice does not mutate the original array.
@@ -620,14 +621,15 @@ Math.round(2.4) = 2
620621
```
621622

622623
### JavaScript Integer Max Min
624+
623625
`Number.MAX_SAFE_INTEGER` is the largest integer which can be used safely in calculations.
624626

625627
For example, `Number.MAX_SAFE_INTEGER` + 1 === `Number.MAX_SAFE_INTEGER` + 2 is true — any integer larger than MAX_SAFE_INTEGER cannot always be represented in memory accurately. All bits are used to represent the digits of the number.
626628

627629
It is 16 digit number.
628630

629-
- `MIN_SAFE_INTEGER` = -9007199254740992
630-
- `MAX_SAFE_INTEGER` = 9007199254740991
631+
- `Number.MIN_SAFE_INTEGER` = -9007199254740992
632+
- `Number.MAX_SAFE_INTEGER` = 9007199254740991
631633

632634
## Mock Interview
633635

0 commit comments

Comments
 (0)