rootEnginear / my-common-patterns

Pattern CSS/JS ที่มักจะใช้บ่อยๆ ตอน Dev จะได้เปิดมา Copy ง่ายๆ
https://rootenginear.github.io/my-common-patterns/
MIT License
1 stars 0 forks source link

Format วันที่ พ.ศ. #10

Open rootEnginear opened 2 years ago

rootEnginear commented 2 years ago
const date_formatter = new Intl.DateTimeFormat('th-TH', {
  dateStyle: 'short'
});
const formatDate = (date: Date) => date_formatter.format(date);

formatDate( new Date(2022,9,31) ) // 31/10/65

เวลากรอก กรอก ค.ศ. ตามปกติ แล้วเดี๋ยว Intl จะ format เป็น พ.ศ. ให้เลย

dateStyle แบบต่างๆ

dateStyle ผลลัพธ์
'short' '31/10/65'
'medium' '31 ต.ค. 2565'
'long' '31 ตุลาคม 2565'
'full' 'วันจันทร์ที่ 31 ตุลาคม พ.ศ. 2565'

Ref

DateTimeFormat() - MDN