Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec6649 commit 45748dbCopy full SHA for 45748db
README.md
@@ -42,6 +42,8 @@
42
|36 | [reduceRight](#reduceRight)|
43
|37 | [Abort Fetch](#Abort-Fetch)|
44
|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
+
47
48
49
@@ -845,4 +847,18 @@ const newState = state.map((obj) =>
845
847
846
848
```
849
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
864
0 commit comments