Answers for "how to get the number of days in a month in javascript"

3

how to get the number of days in a month in javascript

// instantiate a date object
 var dt = new Date();

// dt.getMonth() will return a month between 0 - 11
// we add one to get to the last day of the month 
// so that when getDate() is called it will return the last day of the month
 var month = dt.getMonth() + 1;
 var year = dt.getFullYear();

// this line does the magic (in collab with the lines above)
 var daysInMonth = new Date(year, month, 0).getDate();
Posted by: Guest on October-22-2020
1

daysinmonth javascript

var dt = new Date();
 var month = dt.getMonth();
 var year = dt.getFullYear();
daysInMonth = new Date(year, month, 0).getDate();
Posted by: Guest on August-20-2020
0

how to get the number of days in a month in javascript

<script type="text/javascript">
 var dt = new Date();
 var month = dt.getMonth();
 var year = dt.getFullYear();
daysInMonth = new Date(year, month, 0).getDate();
</script>
Posted by: Guest on July-28-2021

Code answers related to "how to get the number of days in a month in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language