Skip to content

Commit 45748db

Browse files
authored
Numeric separators
1 parent 7ec6649 commit 45748db

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
|36 | [reduceRight](#reduceRight)|
4343
|37 | [Abort Fetch](#Abort-Fetch)|
4444
|38 | [How to change the value of an object which is inside an array](#How-to-change-the-value-of-an-object-which-is-inside-an-array)|
45+
|39 | [Numeric separators allow us to improve our code readability](#Numeric-separators-allow-us-to-improve-our-code-readability)|
46+
4547

4648

4749

@@ -845,4 +847,18 @@ const newState = state.map((obj) =>
845847
846848
```
847849
850+
**[⬆ Back to Top](#table-of-contents)**
851+
### Numeric separators allow us to improve our code readability
852+
853+
```javascript
854+
855+
100_000_000 === 100000000 // true
856+
857+
300_000 === 300000 //true
858+
859+
```
860+
861+
862+
863+
848864

0 commit comments

Comments
 (0)