Answers for "no of days in months"

11

month names

["January", "Febuary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]
Posted by: Guest on May-24-2020
0

days in the current month

function daysInThisMonth() {
	var now = new Date();
    return new Date(now.getFullYear(), now.getMonth()+1, 0).getDate();
}
Posted by: Guest on May-27-2021

Code answers related to "no of days in months"

Browse Popular Code Answers by Language