Last active
August 2, 2019 19:59
-
-
Save GuilhermeRossato/2c3c1ac8f55699f737a734b748002d28 to your computer and use it in GitHub Desktop.
Fast and compact way to get the weekday by date (year, month and day) in pure javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A pure function that retrieves the day of the week of a given date. | |
* Does not check if the date exists (i.e. 2019/02/31 yields a weekday, but doesn't exists). | |
* | |
* @param {number} y The year as a number with 4 digits | |
* @param {number} m The month as a number between 0 and 11 (january to december) | |
* @param {number} d The day as a number between 0 and 31 | |
* @return {number} The number of the weekday, between 0 (monday) to 6 (sunday) | |
*/ | |
function weekdayByDate(y, m, d) { | |
return (((m < 3)?Math.ceil:Math.floor)(y*5/4)+d-(m==10?4:((0x940e9783>>(3*m-3))&7)))%7; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment