Slide 47
Slide 47 text
var event = new Date(Date.UTC(2012, 11, 20, 3, 0, 0));
var options = {
weekday: ‘long',
year: ‘numeric',
month: ‘long',
day: ‘numeric’
};
console.log(event.toLocaleDateString('de-DE', options));
// expected output: Donnerstag, 20. Dezember 2012
console.log(event.toLocaleDateString('ar-EG', options));
// expected output: ٢٠١٢ ،ﺮﺒﻤﺴﯾد ٢٠ ،ﺲﯿﻤﺨﻟا
console.log(event.toLocaleDateString('ko-KR', options));
// expected output: 2012֙ 12ਘ 20ੌ ݾਃੌ
@mybluewristband