龍巖易富通網(wǎng)絡(luò)科技有限公司

龍巖小程序開(kāi)發(fā),龍巖分銷系統(tǒng)

小程序昨天日期(年月日)函數(shù)

2024.06.03 | 253閱讀 | 0條評(píng)論 | javascript

function getYesterdayDate() {

  const today = new Date();

  const yesterday = new Date(today.getTime() - (24 * 60 * 60 * 1000));

  return yesterday.toISOString().split('T')[0];

}

 

console.log(getYesterdayDate()); // 輸出格式為YYYY-MM-DD


贊 (

發(fā)表評(píng)論