формате 26.03.1997?
export const formatDate = (date: Date): string => { const year = date.getFullYear(); const month = date.getMonth() < 10 ? 0${date.getMonth() + 1} : date.getMonth() + 1 const day = date.getDate() < 10 ? 0${date.getDate()} : date.getDate() return ${year}.${month}.${day} }
Может как то так ? new Date().toLocaleDateString('ru')
В некоторых браузерах работает некорректно. new Date().toLocaleString('ru-RU', { timezone: 'Europe/Moscow', day: '2-digit', month: '2-digit', year: 'numeric' }
https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
Обсуждают сегодня