7 lines
224 B
TypeScript
7 lines
224 B
TypeScript
export function formatDate(date: Date): string {
|
|
return date.toLocaleDateString(undefined, { // you can use undefined as first argument
|
|
year: "numeric",
|
|
month: "2-digit",
|
|
day: "2-digit",
|
|
});
|
|
} |