Date.prototype.getMinutes()
getMinutes()
方法是 Date
实例的方法,它返回该日期的分钟数,以本地时间表示。
尝试一下
语法
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
规范
规范 |
---|
ECMAScript 语言规范 # sec-date.prototype.getminutes |
浏览器兼容性
BCD 表仅在浏览器中加载