我使用的是moment.js來計算下週的開始日期和結束日期。但現在我已經因爲一些縮小問題而將其刪除。使用純javascript獲取下週的開始和結束日期
我能夠如下得到這個星期的開始和結束日期,
var today = new Date;
var first = today.getDate() - today.getDay();
(this.fromDate = new Date(today.setDate(first)));
(this.toDate = new Date(today.setDate(last)));
如何尋找下週開始和結束日期?
你可以用我的答案代碼到其他的問題嗎? https://stackoverflow.com/questions/42158971/how-to-find-the-dates-of-coming-saturday-and-sunday-from-todays-date-in-typescr – Calum