Here's an example of how to use the endOfDay
function from the date-fns
library in TypeScript:
index.ts261 chars7 lines
The endOfDay
function takes a Date
object as an argument and returns a new Date
object with the time set to the end of the day (i.e., 23:59:59.999).
Note that endOfDay
does not modify the original Date
object, but returns a new one. Also, the returned Date
object is in UTC (Coordinated Universal Time) by default, so you may need to adjust it to your local time zone if necessary.
gistlibby LogSnag