Answers for "get the first day and last day of current mongth javascript"

11

get the first day and last day of current mongth javascript

var date = new Date();
var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);
Posted by: Guest on May-02-2020
0

js get first and last day of previous month

var d = new Date();
d.setDate(0); //sets d to the last day of the previous month
d.setDate(1); //sets d the the first day of that month
d.setHours(0,0,0,0); //sets d time to midnight

//d now equals the first day of the month before today
Posted by: Guest on April-09-2021

Code answers related to "get the first day and last day of current mongth javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language