Formats a date using a formatting string in the strftime format, in any given locale.
The string representation of date
strftime format
strftime('%A, %d/%m/%y', new Date())// 'Saturday, 01/02/2020'
The format string to apply
The date value
Optional
The locale to use when formatting (default is system locale).
Generated using TypeDoc
Formats a date using a formatting string in the strftime format, in any given locale.
Returns
The string representation of date
See
strftime format
Example