Tim
Results
2
comments of
Tim
Or something like this? ``` const epochDay = 24 * 60 * 60 * 1000: const today = new Date(); const yesterday = new Date(today.getTime() - epochDay); const tomorrow =...
I don't think we even need to use the new Date() constructur in the array anymore, since yesterday, today and tomorrow already are dates. While at it, it probably makes...