最終更新 1 week ago

Korbs's Avatar Korbs revised this gist 1 month ago. Go to revision

1 file changed, 20 insertions

README.md(file created)

@@ -0,0 +1,20 @@
1 + Script:
2 + ```typescript
3 + const FormatDate = (LocaleDate: string) =>
4 + new Date(LocaleDate).toLocaleString('en-US', {
5 + dateStyle: "short",
6 + timeStyle: "short"
7 + })
8 +
9 + FormatDate(YourDateVariable)
10 + ```
11 +
12 + Before:
13 + ```
14 + 2025-12-02T20:15:59+00:00
15 + ```
16 +
17 + After:
18 + ```
19 + 12/2/25, 3:15 PM
20 + ```
Newer Older