Skip to content

Instantly share code, notes, and snippets.

@ProgramAlgo
Last active December 14, 2018 07:03
Show Gist options
  • Save ProgramAlgo/23b25ec09f8ce682b2cf6a6fe0ba379d to your computer and use it in GitHub Desktop.
Save ProgramAlgo/23b25ec09f8ce682b2cf6a6fe0ba379d to your computer and use it in GitHub Desktop.
Last Week Monday and Sunday Moment JavaScript
// http://momentjs.com/docs/#/get-set/day/
const lastMon = moment().day(-6).startOf('day').format('x');
const lastSun = moment().day(0).endOf('day').format('x');
const lastMon2 = moment().startOf('week').days(-6).format('x');
const lastSun2 = moment().startOf('week').format('x');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment