I want to get the date of the next Monday or Thursday (or today if it is Mon or Thurs). As Moment.js works within the bounds of a Sunday - Saturday, I\'m having to work out
moment().day() will give you a number referring to the day_of_week.
moment().day()
What's even better: moment().day(1 + 7) and moment().day(4 + 7) will give you next Monday, next Thursday respectively.
moment().day(1 + 7)
moment().day(4 + 7)
See more: http://momentjs.com/docs/#/get-set/day/