DEV Community

Islam Sayed
Islam Sayed

Posted on

How to Format Date in Javascript

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)

Collapse
 
hozefaj profile image
Hozefa

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.