Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get next week start and end using jquery and moment js

I searched for this question and found there is a no answer on Stackoverflow.. So I decided to answer it...

This question helps if you need to get the start/end of next/last week with Monday as start of week.

like image 501
Venkata K. C. Tata Avatar asked Mar 03 '14 10:03

Venkata K. C. Tata


1 Answers

A little late to the party but here is the simplest way I've found to express starts/ends of weeks. The isoWeek argument starts weeks on Monday according to the ISO 8601, while week starts weeks depending on your locale (so probably either Sunday or Monday).

This week:

moment().startOf('isoWeek') moment().endOf('isoWeek') 

Next week:

moment().add(1, 'weeks').startOf('isoWeek') moment().add(1, 'weeks').endOf('isoWeek') 

Last week:

moment().subtract(1, 'weeks').startOf('isoWeek') moment().subtract(1, 'weeks').endOf('isoWeek') 

I like these constructions because they are incredibly readable. It's also easy to go back or forward any number of weeks by specifying how many weeks you want in subtract or add.

like image 52
Dr. Acula Avatar answered Sep 28 '22 20:09

Dr. Acula