1 2 3 4 5 6 7 8 9
| const time = new Date('2020-01-01').getTime() new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'full'}).format(time)
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'long'}).format(time)
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'medium'}).format(time)
new Intl.DateTimeFormat('zh-u-ca-chinese', {dateStyle: 'short'}).format(time)
|