Returns whether the given date is the first day of month
Optional
the date to check
whether the date is the first day of month
isFirstDayOfMonth(new Date(2023, 8, 1)); // trueisFirstDayOfMonth(new Date(2023, 8, 30)); // false Copy
isFirstDayOfMonth(new Date(2023, 8, 1)); // trueisFirstDayOfMonth(new Date(2023, 8, 30)); // false
Returns whether the given date is the first day of month