日付の時刻情報を除いたモーメントの取得方法
方法1: モーメントオブジェクトのメソッドを使用するconst moment = require('moment'); // 現在の日付を取得 const currentDate = moment(); // 時刻情報を除いた日付を取得 const dateWithoutTime = currentDate.startOf('day'); console.log(dateWithoutTime.format('YYYY-MM-DD'));>>More