CoffeeScript 日期 - setUTCMinutes()

描述

setUTCMinutes() 方法根据通用时间设置指定日期的分钟数。


语法

下面给出的是 setUTCMinutes() 方法的语法。

Date.setUTCMinutes(minutesValue[, secondsValue[, msValue]])

Parameter Detail

  • minutesValue − 0 到 59 之间的整数,代表分钟。

  • secondsValue − 0 到 59 之间的整数,代表秒。 如果指定 secondsValue 参数,则还必须指定 minutesValue。

  • msValue − 一个介于 0 和 999 之间的数字,代表毫秒。 如果指定 msValue 参数,则还必须指定 minutesValue 和 secondsValue。

如果您未指定 secondsValue 和 msValue 参数,则使用从 getUTCSeconds 和 getUTCMilliseconds 方法返回的值。

如果您指定的参数超出预期范围,setUTCMinutes 会相应地尝试更新 Date 对象中的日期信息。 例如,如果您将 100 用于 secondsValue,则分钟 (minutesValue) 将递增 1 (minutesValue + 1),而 40 将用于秒。


示例

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

dt = new Date "February 19, 2016 23:15:00"
dt.setUTCMinutes 65   
console.log dt

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

c:\> coffee -c date_setutcminutes.coffee

在编译时,它会提供以下 JavaScript。

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

  dt = new Date("February 19, 2016 23:15:00");

  dt.setUTCMinutes(65);

  console.log(dt);

}).call(this);

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

c:\> coffee date_setutcminutes.coffee

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

Fri Feb 19 2016 23:35:00 GMT+0530 (India Standard Time)

❮ CoffeeScript - 日期