日付から月の名前を抽出する方法
JavaScript では、Date オブジェクトから月の名前を簡単に取得できます。これは包括的なガイドです:
toLocaleString() メソッドの使用:
このメソッドを使用すると、ロケール固有の規則に従って日付オブジェクトを文字列としてフォーマットできます。月名の場合は、「month」キーが次のいずれかの値に設定されたオブジェクトを指定します:
例:
var objDate = new Date("10/11/2009"); // Get the month name in long format const monthNameLong = objDate.toLocaleString('default', { month: 'long' }); // Get the month name in short format const monthNameShort = objDate.toLocaleString('default', { month: 'short' }); console.log(`Long month name: ${monthNameLong}`); console.log(`Short month name: ${monthNameShort}`);
これは出力します:
Long month name: October Short month name: Oct
以上がJavaScriptで日付から月の名前を取得するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。