Function formatDateFull

  • Formats a date to the full format string 'MMM dd, yyyy'

    Parameters

    Returns string

    A string representing the formatted date in the full format string 'MMM dd, yyyy'

    Example

    formatDateFull(new Date());
    // => 'Jan 01, 2022'

    formatDateFull('2022-01-01');
    // => 'Jan 01, 2022'

Generated using TypeDoc