如何使用JS只打印星期几。还是日期和月份?

我当时在玩一些功能,但我只能得到整个日期。

let today = new Date()
today.getDate()

let tomorrow = new Date();
tomorrow.getDay(today.getDate()+1)


然后,我将不得不将该变量用作react组件中的props,它应该是一个字符串。
那么我应该使用toUTCstring吗?

最佳答案

getDay不带参数。您正在寻找setDate将日期设置为明天,然后使用getDay不带参数:



let tomorrow = new Date();
tomorrow.setDate(tomorrow.getDate() + 1);
let days = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat']
console.log('tomorrow is: ' + days[tomorrow.getDay()])

关于javascript - 如何获得仅打印星期几的日期?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55993047/

10-09 16:10