CoffeeScript 日期 - setMonth()
描述
setMonth() 方法根据当地时间设置指定日期的月份。
语法
下面给出的是 setMonth() 方法的语法。
Date.setMonth(monthValue[, dayValue])
Parameter Detail
monthValue − 0 到 11 之间的整数(表示一月到十二月)。
dayValue − 从 1 到 31 的整数,代表一个月中的第几天。
如果不指定 dayValue 参数,则使用从 getDate 方法返回的值。 如果您指定的参数超出预期范围,setMonth 会尝试相应地更新 Date 对象中的日期信息。 例如,如果您将 15 用作 monthValue,则年份将增加 1(year + 1),而月份将使用 3。
示例
以下示例演示了 CoffeeScript 中 setMonth() 方法的用法。 将此代码保存在名为 date_setmonth.coffee 的文件中。
dt = new Date "February 19, 2016 23:15:00" dt.setMonth 5 console.log dt
打开命令提示符并编译.coffee 文件,如下所示。
c:\> coffee -c date_setmonth.coffee
在编译时,它会提供以下 JavaScript。
// Generated by CoffeeScript 1.10.0 (function() { var dt; dt = new Date("February 19, 2016 23:15:00"); dt.setMonth(5); console.log(dt); }).call(this);
现在,再次打开命令提示符,然后运行 CoffeeScript 文件,如下所示。
c:\> coffee date_setmonth.coffee
执行时,CoffeeScript 文件产生以下输出。
Sun Jun 19 2016 23:15:00 GMT+0530 (India Standard Time)