CoffeeScript 日期 - getUTCMinutes()



描述

getUTCMinutes() 方法根据世界时间返回指定日期中的分钟。getUTCMinutes() 返回的值是一个 0 到 59 之间的整数。

语法

以下是 getUTCMinutes() 方法的语法。

Date.getUTCMinutes()

示例

以下示例演示了在 CoffeeScript 中使用 getUTCMinutes() 方法。将此代码保存在名为 date_getutcminutes.coffee 的文件中。

dt = new Date()
console.log "The UTC minutes in the specified date is : " + dt.getUTCMinutes()

打开 命令提示符 并按如下所示编译 .coffee 文件。

c:\> coffee -c date_getutcminutes.coffee 

编译完成后,会得到以下 JavaScript。

// Generated by CoffeeScript 1.10.0
(function() {
  var dt;

  dt = new Date();

  console.log("The UTC minutes in the specified date is : " + dt.getUTCMinutes());

}).call(this);

现在,再次打开 命令提示符,并按如下所示运行 CoffeeScript 文件。

c:\> coffee date_getutcminutes.coffee

执行后,CoffeeScript 文件会产生以下输出。

The UTC minutes in the specified date is : 34
coffeescript_date.htm
广告