在 JS 中,如何将日期格式化为 MM/DD/YYYY?
new Date(Date.now() + (8 * 86400000)).toLocaleString().split(',')[0])
returns "12/1/2020"
如何将其格式化为“12/01/2020”?
fromDate:
(new Date(Date.now() + (1 * 86400000)).toLocaleString().split(',')[0]),
toDate:
(newDate(Date.now() + (8 * 86400000)).toLocaleString().split(',')[0])
我希望 fromDate 和 toDate 为:
如果在 MST 下午 5:00 和午夜之间:设置fromDate为tomorrow'sdate ,并toDate设置为tomorrow's date + 7 days
如何比较 currentTime 是否大于当地时间下午 5 点?
let currentTime = new Date().toLocaleTimeString('en-US', {
hour: '2-digit',
minute: '2-digit',
second: '2-digit',
hour12: false
});
拉丁的传说
POPMUISE
相关分类