美文网首页
获取上个月

获取上个月

作者: zackxizi | 来源:发表于2018-09-12 11:43 被阅读0次
function getPreDate () {
  const toDate = new Date()
  const preDay = toDate - 24 * 60 * 60 * 1000
  const preDate = new Date(preDay)
  return `${preDate.getFullYear()}-${(preDate.getMonth() + 1) > 9 ? preDate.getMonth() + 1 : '0' + (preDate.getMonth() + 1)}-${(preDate.getDate()) > 9 ? preDate.getDate() : '0' + (preDate.getDate())}`
}

相关文章

网友评论

      本文标题:获取上个月

      本文链接:https://www.haomeiwen.com/subject/nstewftx.html