mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
663 B
663 B
Unicode Technical Report 35
Subject
Create a function named format
which accepts a valid Date
and a format string
. Your function should return a correctly formatted string.
Your function must handle:
y
yyyy
G
GGGG
M
MM
MMM
MMMM
d
dd
E
EEEE
h
hh
m
mm
s
ss
H
HH
a
Example
const d = new Date('7 January 1985, 3:08:19')
format(d, 'HH(mm)ss [dd] <MMM>') // -> '03(08)19 [07] <Jan>'