Travis build: 561

This commit is contained in:
30secondsofcode
2018-09-29 13:58:40 +00:00
parent 6f296a3585
commit 920f8a445b
2 changed files with 2 additions and 1 deletions

View File

@ -4457,6 +4457,7 @@ minDate(array); // 2016-01-08T22:00:00.000Z
### tomorrow
Results in a string representation of tomorrow's date.
Use `new Date()` to get today's date, adding one day using `Date.getDate()` and `Date.setDate()`, and converting the Date object to a string.
```js