Is there a way that I get the last monday in the month with moment.js?
I know I can get the end of the month with: moment().endOf(\'month\')
moment().endOf(\'month\')
B
you get always monday with isoweek:
moment().endOf('month').startOf('isoweek')