Home > Web Front-end > JS Tutorial > body text

Guide to using the getDay method of Date object in javascript_javascript skills

WBOY
Release: 2016-05-16 16:25:26
Original
2052 people have browsed it

The Date object has a getDay method, which returns the day of the week in a specific date based on local time. The return value ranges from 0 to 6, corresponding to Sunday to Saturday respectively

getDay 0 1 2 3 4 5 6
Day of the week Sunday Monday Tuesday Wednesday Thursday Friday Saturday

When using date-related requirements, you need to convert the value returned by getDay into a day of the week, that is, what day of the week is "this day"? For example, selecting a calendar in the calendar component returns "2014-12-22 Monday".

This is a piece of code that is still running online

Copy code The code is as follows:

/*
* Return the day of the week based on the Date object
* @param {Date} date
* @return {String} "Wednesday"
*/
function getChineseWeekByDate(date) {
var numWeekDay = date.getDay();
If (numWeekDay == 0) {
         return 'Sunday';
} else if (numWeekDay == 1) {
         return 'Monday';
} else if (numWeekDay == 2) {
         return 'Tuesday';
} else if (numWeekDay == 3) {
         return 'Wednesday';
} else if (numWeekDay == 4) {
         return 'Thursday';
} else if (numWeekDay == 5) {
         return 'Friday';
} else if (numWeekDay == 6) {
         return 'Saturday';
} else {
         return '';
}
}

This code is judged by multiple if else branches and returns the day of the week. Some students mentioned that it can be optimized using switch

Copy code The code is as follows:

/*
* Return the day of the week based on the Date object
* @param {Date} date
* @return {String} "Wednesday"
*/
function getChineseWeekByDate(date) {
var numWeekDay = date.getDay();
switch (numWeekDay) {
case 0: return 'Sunday';
          case 1: return 'Monday';
          case 2: return 'Tuesday';
case 3: return 'Wednesday';
case 4: return 'Thursday';
case 5: return 'Friday';
case 6: return 'Saturday';
            default: return '';
}
}

Compared with if/else, the code is much simpler, shorter and clearer. Someone has done statistics that the shorter the code, the shorter the brain's thinking time. Therefore, you will see various people and books advocating and praising "short codes" such as "The Beauty of Short Codes" and "How to Concise Code".

"Code Encyclopedia" mentions using table-driven method to simplify programming

Table-driven method — Table-driven method is a programming pattern (scheme) that searches for information from tables without using logical statements (if and switch). In fact, anything that can be selected through logical statements can be selected through table lookup. For simple cases, it is easier and more straightforward to use logical statements. But as the logic chain becomes more and more complex, the look-up table method becomes more and more attractive.

As mentioned above, tables are used to replace logical statements. Many front-end engineers in JS have tried their best to eliminate statements with expressions since they understood some features of functional languages. For example

1. && replaces single if

Copy code The code is as follows:

if (a == 1) {
$.ajax(xx)
}
// -->
(a == 1) && $.ajax(xx)

2. ?: replace if/else

Copy code The code is as follows:

if (a == 1) {
$.ajax(xx)
} else {
$(yy).remove()
}
// -->
(a == 1) ? $.ajax(xx) : $(yy).remove()

3. Multiple if/else and switch can also be replaced with multiple "?:"

Copy code The code is as follows:

if (a == 1) {
alert(1)
} else if (a == 2) {
alert(2)
} else if (a == 3) {
alert(3)
} else {
alert(4)
}
// -->
(a == 1)
? alert(1) : (a == 2)
? alert(2) : (a == 3)
? alert(3) : alert(4)

In addition, you can also use function recursion to eliminate for/while statements. I was addicted to these writing methods at first, but later I found that I couldn't understand them anymore (maybe I still read them less, the brain always naturally converts them into sentences), but in the end I got used to using sentences.

Let’s try replacing the table mentioned in "Code Encyclopedia" with a JS object

Copy code The code is as follows:

/*
* Return the day of the week based on the Date object
* @param {Date} date
* @return {String} "Wednesday"
*/
function getChineseWeekByDate(date) {
var numWeekDay = date.getDay();
var weekObj = {
         '0': 'Sunday',
‘1’: ‘Monday’,
'2': 'Tuesday',
'3': 'Wednesday',
'4': 'Thursday',
‘5’: ‘Friday’,
‘6’: ‘Saturday’,
};
Return weekObj[numWeekDay] || '';
}

Compared with switch, a lot of code has been reduced, but there are still keys 0~6. The value returned by the getDay method starts from 0 just like the JS array index. Therefore, it can be simplified using an array

Copy code The code is as follows:

/*
* Return the day of the week based on the Date object
* @param {Date} date
* @return {String} "Wednesday"
*/
function getChineseWeekByDate(date) {
var numWeekDay = date.getDay();
var weekArr = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
Return weekArr[numWeekDay] || '';
}
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template