moment().year()方法用于获取或设置Moment对象的年份。可设置的年份值范围为-270,000 至270,000。
用法:
moment().year( Number );
Parameters: 该方法接受如上所述和如下所述的单个参数:
- Number:这是必须为 Moment 对象设置的年份。它是一个可选参数。
返回值:此方法返回当前年份。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示 Moment.js moment().year() 方法。
示例 1:
Javascript
const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current year is:", moment().year())
let year2050 = moment().year(2050);
console.log("Year of 2050 is:", year2050.toString())
let year1950 = moment().year(1950);
console.log("Year of 1950 is:", year1950.toString())
输出:
Current Date: Mon Jul 11 2022 02:09:59 GMT+0530 Current year is: 2022 Year of 2050 is: Mon Jul 11 2050 02:09:59 GMT+0530 Year of 1950 is: Tue Jul 11 1950 02:09:59 GMT+0530
示例 2:
Javascript
const moment = require('moment');
console.log("Current Date:", moment().toString())
console.log("Current year is:", moment().year())
let negativeYear50 = moment().year(-50);
console.log(
"Negative Year of 50 is:",
negativeYear50.toString()
)
let negativeYear1000 = moment().year(-1000);
console.log(
"Negative Year of 1000 is:",
negativeYear1000.toString()
)
输出:
Current Date: Mon Jul 11 2022 02:09:59 GMT+0530 Current year is: 2022 Negative Year of 50 is: Tue Jul 11 -0050 02:09:59 GMT+0553 Negative Year of 1000 is: Fri Jul 11 -1000 02:09:59 GMT+0553
参考: https://momentjs.com/docs/#/get-set/year/
相关用法
- Moment.js moment().calender()用法及代码示例
- Moment.js moment().daysInMonth()用法及代码示例
- Moment.js moment().diff()用法及代码示例
- Moment.js moment().format()用法及代码示例
- Moment.js moment().from()用法及代码示例
- Moment.js moment().fromNow()用法及代码示例
- Moment.js moment().to()用法及代码示例
- Moment.js moment().toNow()用法及代码示例
- Moment.js moment().unix()用法及代码示例
- Moment.js moment().valueOf()用法及代码示例
- Moment.js moment().millisecond()用法及代码示例
- Moment.js moment().set()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().local()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().get()用法及代码示例
- Moment.js moment().startOf()用法及代码示例
- Moment.js moment().isoWeeksInYear()用法及代码示例
- Moment.js moment().toArray()用法及代码示例
- Moment.js moment().utcOffset()用法及代码示例
- Moment.js moment().zone()用法及代码示例
- Moment.js moment().add()用法及代码示例
- Moment.js moment().inspect()用法及代码示例
- Moment.js moment().weeksInYear()用法及代码示例
- Moment.js moment().date()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().year() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。