Source Code
// Convert Date to Date String thai
const d = new Date()
console.log(d)
const op = {
day:"numeric",
month:"long",
year:"numeric"
}
const s = d.toLocaleString("th-TH",op)
console.log(s) // ok
Source Code
// Convert Date to Date String thai
const d = new Date()
console.log(d)
const op = {
day:"numeric",
month:"long",
year:"numeric"
}
const s = d.toLocaleString("th-TH",op)
console.log(s) // ok