Formats a date to the US date format 'MM/dd/yyyy'
The date to format
A string representing the formatted date in the US date format 'MM/dd/yyyy'
formatDateUS(new Date());// => '01/01/2022'formatDateUS('2022-01-01');// => '01/01/2022' Copy
formatDateUS(new Date());// => '01/01/2022'formatDateUS('2022-01-01');// => '01/01/2022'
Generated using TypeDoc
Formats a date to the US date format 'MM/dd/yyyy'