Skip to content

Commit 0ff4aba

Browse files
Merge pull request ryanmcdermott#283 from uxitten/patch-1
Added numeric separator for improve readability
2 parents 1c0b20a + 3afe391 commit 0ff4aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ setTimeout(blastOff, 86400000);
100100

101101
```javascript
102102
// Declare them as capitalized named constants.
103-
const MILLISECONDS_IN_A_DAY = 86400000;
103+
const MILLISECONDS_IN_A_DAY = 86_400_000;
104104

105105
setTimeout(blastOff, MILLISECONDS_IN_A_DAY);
106106
```

0 commit comments

Comments
 (0)