Moment.js: First and Last Day of Current Month
Obtain accurate boundaries of the current month with Moment.js in no time:
The startOf('month')
and endOf('month')
methods zero in on the month start and end dates respectively.
Time Zone Aware
Moment.js provides intuitive handling of time zones. Specify UTC for universal time:
The .utc()
converts local time to UTC, thereby circumventing timezone-related issues.
Back to Basics: Native JavaScript
In case Moment.js isn't feasible or feels like an overkill, we have good ol' JavaScript to the rescue:
This vanilla JavaScript rendition crafts exact Date
objects, which are then sliced to YYYY-MM-DD
.
Fine-Tuned Precision and Formatting
Moment.js shines with its date formatting. Enhance the day with explicit time:
Appending HH:mm:ss
displays time for those requiring time precision.
Date Range Selection with daterangepicker
Weird and complex date requirements? No worries, daterangepicker
is your super tool:
daterangepicker
sets the start and end of the current month as the initial date range, and allows tremendous customizability for UIs.
Date Manipulation Demystified
Moment.js features superb date manipulation methods such as add()
and subtract()
. Let's fetch the first and last days of the last week:
Future-Proof Your Code
While moment.js is awesome, we need to be aware of deprecated features. Consult the official documentation. Consider smaller alternatives like date-fns
or Day.js
when tiny bundle size matters.
Was this article helpful?