Date.prototype.getMinutes()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
getMinutes()
メソッドは、地方時に基づき、指定された日時の「分」を返します。
試してみましょう
const birthday = new Date("March 13, 08 04:20");
console.log(birthday.getMinutes());
// Expected output: 20
構文
js
getMinutes()
返値
地方時に基づき、与えた日時の「分」を表す 0 から 59 までの間の整数値。
例
getMinutes() の使用
以下の 2 行目の文は、Date
オブジェクトである xmas95
の値に基づき、変数 minutes
に 15 という値を代入します。
js
const xmas95 = new Date("December 25, 1995 23:15:30");
const minutes = xmas95.getMinutes();
console.log(minutes); // 15
仕様書
Specification |
---|
ECMAScript® 2025 Language Specification # sec-date.prototype.getminutes |
ブラウザーの互換性
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
getMinutes |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.