programming-examples/js/Date/Write a JavaScript function to get the month start date..js
2019-11-15 12:59:38 +01:00

10 lines
193 B
JavaScript

function startOfMonth(date)
{
return new Date(date.getFullYear(), date.getMonth(), 1);
}
dt = new Date();
console.log(startOfMonth(dt).toString());