@unikue/ts-lang-utils
    Preparing search index...

    Function isFirstDayOfMonth

    • Returns whether the given date is the first day of month

      Parameters

      • Optionaldate: Date

        The date to check

      Returns boolean

      whether the date is the first day of month

      David Hsing

      isFirstDayOfMonth(new Date(2023, 8, 1));    // true
      isFirstDayOfMonth(new Date(2023, 8, 30)); // false