- 現在の日付と時刻の取得 JavaScriptで現在の日付と時刻を取得するには、Dateオブジェクトを使用します。以下のコード例をご覧ください。
const currentDate = new Date();
console.log(currentDate);
- 特定の日付と時刻の作成 特定の日付や時刻を作成するには、Dateオブジェクトの引数を指定します。以下のコード例では、特定の日付と時刻を作成しています。
const specificDate = new Date(2022, 8, 15, 10, 30, 0); // 2022年9月15日 10時30分00秒
console.log(specificDate);
- 日付と時刻のフォーマット JavaScriptでは、日付と時刻を特定のフォーマットに変換する方法も提供されています。以下のコード例では、現在の日付と時刻を特定のフォーマットで表示しています。
const currentDate = new Date();
const formattedDate = currentDate.toLocaleString('ja-JP', { year: 'numeric', month: 'long', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric' });
console.log(formattedDate);
- 日付と時刻の操作 JavaScriptでは、日付と時刻の操作に使用するさまざまなメソッドが提供されています。以下のコード例では、日付や時刻を操作する一般的な方法を示しています。
const currentDate = new Date();
currentDate.setFullYear(2023); // 年を変更
currentDate.setMonth(11); // 月を変更
currentDate.setDate(25); // 日を変更
currentDate.setHours(12); // 時を変更
currentDate.setMinutes(0); // 分を変更
currentDate.setSeconds(0); // 秒を変更
console.log(currentDate);
これらの方法とコード例を参考にしながら、日付と時刻の操作について詳しく学んでみてください。JavaScriptのDateオブジェクトは非常に強力であり、さまざまな操作を行うことができます。