Explain Codes LogoExplain Codes Logo

Moment.js: First and Last Day of Current Month

javascript
date-manipulation
time-zone-aware
date-formatting
Anton ShumikhinbyAnton Shumikhin·Feb 28, 2025
TLDR

Obtain accurate boundaries of the current month with Moment.js in no time:

let firstDay = moment().startOf('month').format('YYYY-MM-DD'); // Wakey-wakey, it's a fresh month! let lastDay = moment().endOf('month').format('YYYY-MM-DD'); // Mic drop, the month is out!

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:

let firstDayUtc = moment.utc().startOf('month').format('YYYY-MM-DD'); // Samurai sword cut, we're at Universal Time Coordinated, baby! let lastDayUtc = moment.utc().endOf('month').format('YYYY-MM-DD'); // At the sound of the beep, the month will be over in UTC... Beep!

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:

let date = new Date(), y = date.getFullYear(), m = date.getMonth(); let firstDay = new Date(y, m, 1).toISOString().slice(0, 10); // JS going commando, it's bare-knuckle boxing time! let lastDay = new Date(y, m + 1, 0).toISOString().slice(0, 10); // JS sends its regards with the last day of the month.

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:

let firstDayWithTime = moment().startOf('month').format('YYYY-MM-DD HH:mm:ss'); // Time to start the stopwatch, the month is Go! let lastDayWithTime = moment().endOf('month').format('YYYY-MM-DD HH:mm:ss'); // That's it folks! The month is a wrap.

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:

let dateRangePickerOptions = { startDate: moment().startOf('month'), endDate: moment().endOf('month') }; $('input').daterangepicker(dateRangePickerOptions, function(start, end, label) { alert('The gods have bestowed a new range upon us: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD')); });

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:

let lastWeekFirstDay = moment().subtract(1, 'weeks').startOf('week').format('YYYY-MM-DD'); // Let's slingshot back to last week! let lastWeekLastDay = moment().subtract(1, 'weeks').endOf('week').format('YYYY-MM-DD'); // Alright, last week wound up. Next!

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.