• Returns the localized name of a month for a given locale, format, and calendar.

    Parameters

    • locale: string

      The locale to use for formatting the month name.

    • month: number

      The month (0 for January, 1 for February, etc.).

    • Optionalformat: "short" | "long" | "narrow" = 'long'

      The format to use for the month name.

    • Optionalcalendar: "gregory" | "islamic" = 'gregory'

      The calendar to use for formatting the month name.

    Returns string

    The localized name of the month.

    console.log(getMonthName('en', 0)); // 'January'
    console.log(getMonthName('ar', 0, 'long', 'islamic')); // 'محرم'