方法1: モーメントオブジェクトのメソッドを使用する
const moment = require('moment');
// 現在の日付を取得
const currentDate = moment();
// 時刻情報を除いた日付を取得
const dateWithoutTime = currentDate.startOf('day');
console.log(dateWithoutTime.format('YYYY-MM-DD'));
方法2: モーメントオブジェクトを作成する際に時刻情報を指定しない
const moment = require('moment');
// 現在の日付を取得し、時刻情報を0に設定
const currentDate = moment().startOf('day');
console.log(currentDate.format('YYYY-MM-DD'));
方法3: モーメントオブジェクトを作成する際に時刻情報を削除する
const moment = require('moment');
// 現在の日付を取得し、時刻情報を削除
const currentDate = moment().set({
hour: 0,
minute: 0,
second: 0,
millisecond: 0
});
console.log(currentDate.format('YYYY-MM-DD'));
これらの方法を使用することで、日付の時刻情報を除いたモーメントオブジェクトを取得することができます。タグにはJavaScript、モーメント.js、日付処理、コーディング例などを追加することで、関連する情報を提供できます。