日期截取 只显示年月日

// 日期 截取 年月日
function formatDate(dateTime) {
const date = new Date(dateTime)
const year = date.getFullYear()
const month = (date.getMonth() + 1).toString().padStart(2, '0')
const day = date.getDate().toString().padStart(2, '0')
return ${year}-${month}-${day}
}

你可能感兴趣的:(日期截取 只显示年月日)