Closed2

JS で今日0時、明日0時のタイムスタンプ取得

plaincode_jpplaincode_jp
        // 今日0時 ミリ秒
        let today = new Date();
        today.setHours(0);
        today.setMinutes(0);
        today.setSeconds(0);
        today.setMilliseconds(0);
        const begin = today.getTime();

        // 明日0時 ミリ秒
        let nextday = new Date();
        nextday.setDate(nextday.getDate() + 1);
        nextday.setHours(0);
        nextday.setMinutes(0);
        nextday.setSeconds(0);
        nextday.setMilliseconds(0);
        const end = nextday.getTime();

このスクラップは2021/03/31にクローズされました