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.
Date
實例的 getMinutes()
方法會根據本地時間回傳此日期的分鐘數。
嘗試一下
const birthday = new Date("March 13, 08 04:20");
console.log(birthday.getMinutes());
// 預期輸出:20
語法
js
getMinutes()
參數
無。
回傳值
一個介於 0 到 59 之間的整數,表示根據本地時間的給定日期的分鐘數。如果日期是無效的,則回傳 NaN
。
範例
使用 getMinutes()
minutes
變數的值為 15
,此值基於 Date
物件 xmas95
的值。
js
const xmas95 = new Date("1995-12-25T23:15:30");
const minutes = xmas95.getMinutes();
console.log(minutes); // 15
規範
Specification |
---|
ECMAScript® 2026 Language Specification # sec-date.prototype.getminutes |