React 獲取昨日起始時間 00:00:00
獲取昨日起始時間 00:00:00 封裝起來作法
export function getYdayStartTime() {
const start = new Date(new Date(new Date().toLocaleDateString()).getTime() - 1 * 24 * 3600 * 1000).getTime() / 1000;
return start;
}
若不轉換時間軸 可以移除後面 .getTime() / 1000
在想要引用的檔案引用
import { getYdayStartTime } from '封裝js路徑';
console.log('昨日起始時間', getYdayStartTime())
留言
張貼留言