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
David Hsing
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