Answers for "js last day of month"

2

get last day of month javascript

var today = new Date();
var lastDayOfMonth = new Date(today.getFullYear(), today.getMonth()+1, 0);
Posted by: Guest on February-12-2021
3

get last date of a month javascript

var lastday = function(y,m){
return  new Date(y, m +1, 0).getDate();
}
console.log(lastday(2014,0));
console.log(lastday(2014,1));
console.log(lastday(2014,11));
Posted by: Guest on December-24-2020

Code answers related to "js last day of month"

Code answers related to "Javascript"

Browse Popular Code Answers by Language