How to get the day of the week from the day number in JavaScript?

后端 未结 8 1120
野的像风
野的像风 2020-12-03 07:05

Given dayNumber is from 0 - 6 representing Monday - Sunday respectively.

Can the Date /

8条回答
  •  旧巷少年郎
    2020-12-03 07:34

    let weekday = ['Sunday',
                   'Monday',
                   'Tuesday',
                   'Wednesday',
                   'Thursday',
                   'Friday',
                   'Saturday'][new Date().getDay()];
    
    console.log(weekday)

提交回复
热议问题