- Dateオブジェクトを使用する方法:
// 現在のローカル日付を取得する
const currentDate = new Date();
console.log(currentDate);
このコードでは、new Date()
を使用して現在のローカル日付を取得しています。取得した日付はcurrentDate
変数に格納され、console.log()
を使用してコンソールに表示されます。
- Intl.DateTimeFormatを使用する方法:
// ローカル日付のフォーマットを指定して取得する
const options = { year: 'numeric', month: 'long', day: 'numeric' };
const currentDate = new Date();
const formattedDate = new Intl.DateTimeFormat('ja-JP', options).format(currentDate);
console.log(formattedDate);
このコードでは、Intl.DateTimeFormat
を使用してローカル日付のフォーマットを指定して取得しています。options
オブジェクトにフォーマットの設定を定義し、Intl.DateTimeFormat
の引数として渡します。取得したフォーマット済みの日付はformattedDate
変数に格納され、console.log()
を使用してコンソールに表示されます。