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.
2 parents da76556 + 753d6d8 commit 20563d0Copy full SHA for 20563d0
README.md
@@ -100,9 +100,9 @@ setTimeout(blastOff, 86400000);
100
101
```javascript
102
// Declare them as capitalized named constants.
103
-const MILLISECONDS_IN_A_DAY = 60 * 60 * 24 * 1000; //86400000;
+const MILLISECONDS_PER_DAY = 60 * 60 * 24 * 1000; //86400000;
104
105
-setTimeout(blastOff, MILLISECONDS_IN_A_DAY);
+setTimeout(blastOff, MILLISECONDS_PER_DAY);
106
```
107
108
**[⬆ back to top](#table-of-contents)**
0 commit comments