Format date according to language, place and specify its style of writing in javascript.👇
Formatieren Sie das Datum nach Sprache, Ort und Schreibweise in Javascript.👇
const date = new Date(); const options = { weekday: "long", year: "numeric", month: "long", day: "numeric" }; console.log(date.toLocaleDateString("en-US", options)); //Sunday, January 26, 2020 console.log(date.toLocaleDateString("ar-EG", options)); //Ø§Ù„Ø£ØØ¯ØŒ ٢٦ يناير Ù¢Ù Ù¢Ù console.log(date.toLocaleDateString("ar-SA", options)); //Ø§Ù„Ø£ØØ¯ØŒ Ù¡ جمادى الآخرة ١٤٤١ هـ console.log(date.toLocaleDateString("de-DE", options)); //Sonntag, 26. Januar 2020
Top comments (1)
I would recommend taking a look at the Intl object in JS. There are tons of capabilities built into it, which I see folks rewrite all the time.