728x90
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) { | |
const months = [ | |
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec' | |
]; | |
const date = new Date(year, month + 1, 0); | |
return `Last day of ${months[month]}, ${year} is ${date.getDate()}`; | |
} | |
console.log( getLastDayOfMonth(2012, 0) ); // 31 | |
console.log( getLastDayOfMonth(2012, 1) ); // 29 | |
console.log( getLastDayOfMonth(2013, 1) ); // 28 |