/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-22-064/main.js
26 строк
796 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
const date = new Date(2024, 0, 15, 14, 30, 45); // Различные форматы для русской локали console.log(new Intl.DateTimeFormat("ru-RU").format(date)); // "15.01.2024" console.log(new Intl.DateTimeFormat("ru-RU", { dateStyle: "full" }).format(date)); // "понедельник, 15 января 2024 г." console.log(new Intl.DateTimeFormat("ru-RU", { dateStyle: "long", timeStyle: "short" }).format(date)); // "15 января 2024 г., 14:30" console.log(new Intl.DateTimeFormat("ru-RU", { year: "numeric", month: "long", day: "numeric", weekday: "long", hour: "2-digit", minute: "2-digit", second: "2-digit", timeZoneName: "short" }).format(date)); // "понедельник, 15 января 2024 г., 14:30:45, MSK"