I tried to display date in LAO PDR ພາສາລາວ format but not works.
According to text my code is
// 4.6.2024, 23:26:55 this de (German is correct)
console.log(new Date().toLocaleString("de"));
// expect 4/6/2024, 23:26:55 but it
// shows 6/4/2024, 11:26:55 PM which is not correct
console.log(new Date().toLocaleString("lo"));
I also tried full tag "lo-LA" and by LICD "1108" from LAO PDR
What's wrong with my code?
Thanks in advance everyone