Merge pull request #283 from uxitten/patch-1

Added numeric separator for improve readability
This commit is contained in:
Ryan McDermott 2020-01-18 21:10:59 -08:00 committed by GitHub
commit 0ff4abade1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,7 @@ setTimeout(blastOff, 86400000);
```javascript
// Declare them as capitalized named constants.
const MILLISECONDS_IN_A_DAY = 86400000;
const MILLISECONDS_IN_A_DAY = 86_400_000;
setTimeout(blastOff, MILLISECONDS_IN_A_DAY);
```