Created
October 2, 2020 09:49
-
-
Save FreePhoenix888/c4da15d0b9572095d388d5d62c1ffd21 to your computer and use it in GitHub Desktop.
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
function getLastDayOfMonth(year, month) { | |
let date = new Date(year, month + 1, 0); | |
return date.getDate(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment