Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. JavaScript
  3. JavaScript リファレンス
  4. 標準組み込みオブジェクト
  5. Date
  6. Date.prototype.getDay()

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

Date.prototype.getDay()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

getDay()Date インスタンスのメソッドで、地方時に基づき、この日付の曜日を返します。 0 は日曜日を表します。「日」を取得する方法はDate.prototype.getDate() をご覧ください。

試してみましょう

const birthday = new Date("August 19, 1975 23:15:30");const day1 = birthday.getDay();// 日曜日 - 土曜日 : 0 - 6console.log(day1);// 予想される結果: 2

構文

js
getDay()

引数

なし。

返値

整数値で、 0 から 6 までの値を取り、地方時に基づいて指定された日時の曜日に対応し、 0 は日曜日、 1 は月曜日、 2 は火曜日のようになります。日時が無効な場合はNaN を返します。

解説

getDay() の返値は 0 から始まります。これは、例えば、曜日の配列をインデックス付けする場合に有益です。

js
const valentines = new Date("1995-02-14");const day = valentines.getDay();const dayNames = ["Sunday", "Monday", "Tuesday" /* , … */];console.log(dayNames[day]); // "Monday"

ただし、国際化のためには、代わりにoptions 引数付きIntl.DateTimeFormat を使用することをお勧めします。

js
const options = { weekday: "long" };console.log(new Intl.DateTimeFormat("en-US", options).format(valentines));// "Monday"console.log(new Intl.DateTimeFormat("de-DE", options).format(valentines));// "Montag"

getDay() の使用

変数weekday には、Date オブジェクトxmas95 の値に基づいて、値1 が指定されます。これは、1995 年 12 月 25 日は月曜日であるためです。

js
const xmas95 = new Date("1995-12-25T23:15:30");const weekday = xmas95.getDay();console.log(weekday); // 1

仕様書

Specification
ECMAScript® 2026 Language Specification
# sec-date.prototype.getday

ブラウザーの互換性

関連情報

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp