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