ES6 - getMinutes() 方法



JavaScript date getMinutes() 方法会根据本地时间返回指定日期中的分钟。getMinutes 返回的值是 0 至 59 之间的整数。

语法

Date.getMinutes ()   

返回值

返回根据本地时间在指定日期中的分钟。

示例

var dt = new Date("December 25, 1995 23:15:00"); 
console.log("getMinutes() : " + dt.getMinutes());   

输出

getMinutes() : 15 
广告