Skip to content

Commit

Permalink
Added number separator for improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
behnammodi committed Jan 18, 2020
1 parent 1c0b20a commit 3afe391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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);
```
Expand Down

0 comments on commit 3afe391

Please sign in to comment.