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