Date.prototype.getHours()
The getHours()
method of Date
instances returns the hours for this date according to local time.
试试
语法
js
getHours()
参数
无。
返回值
一个介于 0 和 23 之间的整数,表示给定日期的本地时间的小时数。如果日期无效,则返回NaN
。
示例
使用 getHours()
hours
变量的值为 23
,基于 Date
对象 xmas95
的值。
js
const xmas95 = new Date("1995-12-25T23:15:30");
const hours = xmas95.getHours();
console.log(hours); // 23
规范
规范 |
---|
ECMAScript 语言规范 # sec-date.prototype.gethours |
浏览器兼容性
BCD 表格仅在启用了 JavaScript 的浏览器中加载。