Skip to content

Instantly share code, notes, and snippets.

View inanepain's full-sized avatar

Philip Michael Raab inanepain

View GitHub Profile
@inanepain
inanepain / Random date between two dates.js
Created February 23, 2022 20:18
Function has option for short date (Ymd) and to change the divider for short date.
/**
* Get random date between two dates
*
* @param {Date} start earliest date
* @param {Date} [end=today] latest date
* @param {boolean} [short=false] only get Ymd (as string)
* @param {string} [join='-'] divider for short date
*
* @returns {Date|string}
*/