CoffeeScript 日期 - setMinutes()



描述

setMinutes() 方法根据本地时间设置指定日期的分钟。

语法

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

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

参数详情

  • secondsValue - 一个介于 0 和 59 之间的整数,表示秒数。如果指定 secondsValue 参数,则还必须指定 minutesValue。

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

如果未指定 secondsValue 和 msValue 参数,则使用 getSeconds 和 getMilliseconds 方法返回的值。

示例

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

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

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

c:\> coffee -c date_setminutes.coffee

编译后,它会为您提供以下 JavaScript 代码。

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

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

  dt.setMinutes(45);

  console.log(dt);

}).call(this);

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

c:\> coffee date_setminutes.coffee

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

Fri Feb 19 2016 23:45:00 GMT+0530 (India Standard Time)
coffeescript_date.htm
广告