Basic date object Date object converted into the string doesn't look good. new Date().toString() Sat Feb 22 2025 13:46:13 GMT+0000 (Coordinated Universal Time) Function
// functions/ddmmyyyyHHMMSS.js
export const ddmmyyyyHHMMSS = (date = new Date(), utc = false) => {
if (isNaN(Date.parse(date))) return 'can not parse date'
const addZeroToNum = (num) => num.toString().length === 1 ? '0' + num : num
const d = new Date(date)
const yyyy = utc ? d.getUTCFullYear() : d.getFullYear()
const mm = addZeroToNum(utc ? d.getUTCMonth() + 1 : d.getMonth() + 1)
const dd = addZeroToNum(utc ? d.getUTCDate() : d.getDate())
const HH = addZeroToNum(utc ? d.getUTCHours() : d.getHours())
const MM = addZeroToNum(utc ? d.getUTCMinutes() : d.getMinutes())
const SS = addZeroToNum(utc ? d.getUTCSeconds() : d.getSeconds())
return `${dd}.${mm}.${yyyy} ${HH}:${MM}:${SS}`
}
Output new Date().toString() Sat Feb 22 2025 13:46:13 GMT+0000 (Coordinated Universal Time) new Date().toISOString() 2025-02-22T13:46:13.654Z ddmmyyyyHHMMSS(new Date()) 22.02.2025 13:46:13 ddmmyyyyHHMMSS(new Date(), true) 22.02.2025 13:46:13 ddmmyyyyHHMMSS("1999-12-31T15:16:17.340Z") 31.12.1999 15:16:17 ddmmyyyyHHMMSS("1999-12-31T15:16:17.340Z", true) 31.12.1999 15:16:17