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
IMHO more elegant way:
var setDays = [ 1, 1, 4, 4, 4, 8, 8 ], nextDay = moment().day( setDays[moment().day()] );