Skip to content

Commit 49303b5

Browse files
committed
chore: updated
1 parent 1485398 commit 49303b5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
- [Quick Sort](#quick-sort)
5353
- [Math & Stats](#math--stats)
5454
- [Integer Division Without Using \* or /](#integer-division-without-using--or-)
55+
- [JavaScript Fundamentals](#javascript-fundamentals)
5556
- [Array slice](#array-slice)
5657
- [Math.floor](#mathfloor)
5758
- [Math.round](#mathround)
@@ -587,6 +588,7 @@ node .\src\math-and-stats\integer-division.js
587588

588589
![ ](https://imgur.com/Cf7cz4W.png)
589590

591+
## JavaScript Fundamentals
590592
### Array slice
591593

592594
Slice does not mutate the original array.
@@ -618,6 +620,9 @@ Math.round(2.4) = 2
618620
```
619621

620622
### JavaScript Integer Max Min
623+
`Number.MAX_SAFE_INTEGER` is the largest integer which can be used safely in calculations.
624+
625+
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.
621626

622627
It is 16 digit number.
623628

0 commit comments

Comments
 (0)