Intl.DateTimeFormat.resolvedOptions() - повертає об'єкт який містить властивості і значення позамовчуваню.
datFormObj.resolvedOptions()
datFormObj - об'єкт DateTimeFormat.
resolvedOptions() метод об'єкту DateTimeFormat який повертає об'єкт з властивостями форматуваня дати і часу позамовчуваню.
Приклад результату: { locale:"uk", numberingSystem:"latn", calendar:"gregory", timeZone:"Europe/Athens", year:"numeric", month:"2-digit", day:"2-digit"}
Не усі браузери підтримують.
var d=new Intl.DateTimeFormat();
var ob= d.resolvedOptions();
alert( 'locale: '+ob.locale+' calendar: '+ob.calendar);
var f=new Intl.DateTimeFormat("ua" , {day:'numeric'});
var ob= f.resolvedOptions();
for(a in ob) console.log(a+':"'+ob[a]+'"');
var d=new Intl.DateTimeFormat();
var ob= d.resolvedOptions();
for(a in ob) console.log(a+':"'+ob[a]+'"');