Javascript date to locale string not correctly display
I tried to display date in LAO PDR ພາສາລາວ format but not works. According to text my code is console.log(new Date().toLocaleString("de")); //4.6.2024, 23:26:55 this de (German is correct) console.log(new Date().toLocaleString("lo")); //expect 4/6/2024, 23:26:55 but it shows //6/4/2024, 11:26:55 PM which…