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

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

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

Can the Date /

8条回答
  •  情书的邮戳
    2020-12-03 07:26

    /**
    * I convert a day string to an number.
    *
    * @method dayOfWeekAsInteger
    * @param {String} day
    * @return {Number} Returns day as number
    */
    function dayOfWeekAsInteger(day) {
      return ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"].indexOf(day);
    }
    

提交回复
热议问题