Skip to content

Instantly share code, notes, and snippets.

@brenopolanski
Created February 15, 2019 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brenopolanski/d69d4fdceab6600a242331994ee092ed to your computer and use it in GitHub Desktop.
Save brenopolanski/d69d4fdceab6600a242331994ee092ed to your computer and use it in GitHub Desktop.
Getting previous month first day and future month last day using moment.js
const prevMonthFirstDay = moment().subtract(1, 'months').date(1);

const nextMonthLastDay = moment().add(2, 'months').date(0);

or

const prevMonthFirstDay = moment().subtract(1, 'months').startOf('month');

const nextMonthLastDay = moment().add(1, 'months').endOf('month');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment