How to display the Western calendar in Japanese calendar by react

Asked 2 years ago, Updated 2 years ago, 42 views

<InputDateAsNumber isYM value={dayjs().format("YYYYMMDD")}/>

as shown in September 2021
appears.

R3/09
How do I make it look like this?

reactjs

2022-09-30 15:37

1 Answers

Intl.DateTimeFormat is available.

console.log(newIntl.DateTimeFormat('ja-JP-u-ca-Japanese', {year: 'numeric', month: '2-digit'}).format(new Date())); 


2022-09-30 15:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.