getTime【経過ミリ秒取得 (UTC)】
valueOf【ミリ秒数取得】
getUTCFullYear【年取得 (UTC)】
getUTCMonth【月取得 (UTC)】
getUTCDate【日取得 (UTC)】
getUTCDay【曜日取得 (UTC)】
getUTCHours【時取得 (UTC)】
getUTCMinutes【分取得 (UTC)】
getUTCSeconds【秒取得 (UTC)】
getUTCMilliseconds【ミリ秒取得 (UTC)】
Date.prototype.getTime【経過ミリ秒取得 (UTC)】
メモ
概要
- UTCの経過ミリ秒を取得
- 設定:setTime【経過ミリ秒設定 (UTC)】
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getTime ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getTime()
1970/01/01 00:00:00 UTC からの経過ミリ秒 (NaN の場合、NaN)
例
Date.prototype.valueOf【ミリ秒数取得】
メモ
概要
- ミリ秒数を取得
- 設定:setTime【経過ミリ秒設定 (UTC)】
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.valueOf ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.valueOf()
1970/01/01 00:00:00 UTC からのミリ秒数
例
Date.prototype.getUTCFullYear【年取得 (UTC)】
メモ
概要
- 年を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCFullYear ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCFullYear()
UTCの年 (NaN の場合、NaN)
例
Date.prototype.getUTCMonth【月取得 (UTC)】
メモ
概要
- 月 (0~11) を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCMonth ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCMonth()
UTCの月 (0~11 / NaN の場合、NaN)
例
Date.prototype.getUTCDate【日取得 (UTC)】
メモ
概要
- 日を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCDate ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCDate()
UTCの日 (1~31 / NaN の場合、NaN)
例
Date.prototype.getUTCDay【曜日取得 (UTC)】
メモ
概要
- 曜日を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCDay ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCDay()
UTCの曜日
戻り値 | 説明 |
---|---|
0~6 | 日曜日~土曜日 |
NaN | NaN |
例
Date.prototype.getUTCHours【時取得 (UTC)】
メモ
概要
- 時を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCHours ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCHours()
UTCの時 (0~23 / NaN の場合、NaN)
例
Date.prototype.getUTCMinutes【分取得 (UTC)】
メモ
概要
- 分を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCMinutes ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCMinutes()
UTCの分 (0~59 / NaN の場合、NaN)
例
Date.prototype.getUTCSeconds【秒取得 (UTC)】
メモ
概要
- 秒を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCSeconds ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCSeconds()
UTCの秒
例
Date.prototype.getUTCMilliseconds【ミリ秒取得 (UTC)】
メモ
概要
- ミリ秒を取得 (UTC)
関連
外部リンク
- ECMA-262 (英語)
Date.prototype.getUTCMilliseconds ( ) ES2024 (15) ES2023 (14) ES2022 (13)
構文
date.getUTCMilliseconds()
UTCのミリ秒 (0~999 / NaN の場合、NaN)