我在代码中设置了今天的日期,如下所示,
public fromDate: Date = new Date();
我怎样才能找到周六和周日的日期,这个周末的日期是从上面开始的?
我可以尝试添加当天的天数。但是有更好的解决方案吗?
答案 0 :(得分:0)
如果您不介意使用外部库,可以使用moment
的{{3}}功能。
import * as moment from 'moment';
const fromDate = moment();
const nextSunday = fromDate.day(7);
console.log(nextSunday.calendar());