Answers for "how to get first day of the given month and year nodejs"

4

javascript date first day of current month

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 February-10-2021

Code answers related to "how to get first day of the given month and year nodejs"

Code answers related to "Javascript"

Browse Popular Code Answers by Language