getFullYear【年取得 (ローカル時刻)】
getYear【相対年取得 (ローカル時刻)】
getMonth【月取得 (ローカル時刻)】
getDate【日取得 (ローカル時刻)】
getDay【曜日取得 (ローカル時刻)】
getHours【時取得 (ローカル時刻)】
getMinutes【分取得 (ローカル時刻)】
getSeconds【秒取得 (ローカル時刻)】
getMilliseconds【ミリ秒取得 (ローカル時刻)】
Date.prototype.getFullYear【年取得 (ローカル時刻)】
メモ
概要
- 年を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getFullYear ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getFullYear()
ローカル時刻の年 (NaN の場合、NaN)
例
Date.prototype.getYear【相対年取得 (ローカル時刻)】
メモ
概要
- ローカル時刻の1900年からの相対年を取得 (2000年問題の為、非推奨)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getYear ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getYear()
ローカル時刻の1900年からの相対年 (NaN の場合、NaN)
例
Date.prototype.getMonth【月取得 (ローカル時刻)】
メモ
概要
- 月 (0~11)を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getMonth ( ) ES2024 (15) ES2023 (14) ES2022 (13)
- 関連
- 外部リンク (英語)
構文
date.getMonth()
ローカル時刻の月 (0~11 / NaN の場合、NaN)
例
Date.prototype.getDate【日取得 (ローカル時刻)】
メモ
概要
- 日を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getDate ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getDate()
ローカル時刻の日 (1~31 / NaN の場合、NaN)
例
Date.prototype.getDay【曜日取得 (ローカル時刻)】
メモ
概要
- 曜日を数値 (0~6:日曜日~土曜日) で取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getDay ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getDay()
ローカル時刻の曜日 (詳細は下記参照)
戻り値 | 説明 |
---|---|
0 ~ 6 | 日曜日 ~ 土曜日 |
NaN | NaN |
例
Date.prototype.getHours【時取得 (ローカル時刻)】
メモ
概要
- 時を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getHours ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getHours()
ローカル時刻の時 (0~23 / NaN の場合、NaN)
例
Date.prototype.getMinutes【分取得 (ローカル時刻)】
メモ
概要
- 分を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getMinutes ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getMinutes()
ローカル時刻の分 (0 ~ 59 / NaN の場合、NaN)
例
Date.prototype.getSeconds【秒取得 (ローカル時刻)】
メモ
概要
- 秒を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getSeconds ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getSeconds()
ローカル時刻の秒 (0~59 / NaN の場合、NaN)
例
Date.prototype.getMilliseconds【ミリ秒取得 (ローカル時刻)】
メモ
概要
- ミリ秒を取得 (ローカル時刻)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getMilliseconds ( ) ES2024 (15) ES2023 (14) ES2022 (13)
- 関連
- 外部リンク (英語)
構文
date.getMilliseconds()
ローカル時刻のミリ秒 (0~999 / NaN の場合、NaN)