moment().max() 方法用于返回给定 Moment 对象数组的最大(或最远的未来)Moment。如果没有传递参数,它将返回当前时间的 Moment 实例。
用法:
moment().max( Moment[] );
参数:该方法接受如上所述和如下所述的单个参数:
- 片刻[]:这是一个 Moment 对象数组,必须从中返回最大的一个。它是一个可选参数。
返回值:此方法返回给定 Moment 对象数组的最大 Moment。
注意:这在普通的 Node.js 程序中不起作用,因为它需要全局安装或在项目目录中安装外部moment.js 库。
Moment.js 可以使用以下命令安装:
moment模块的安装:
npm install moment
以下示例将演示 Moment.js moment().max() 方法。
示例 1:
Javascript
const moment = require('moment');
let momentOne = moment();
let momentTwo = moment().add(15, 'days');
let momentThree = moment().add(15, 'months');
console.log(
`The three Moments are:
${momentOne}
${momentTwo}
${momentThree}
`);
let maximumMoment =
moment.max([momentOne, momentTwo, momentThree]);
console.log(
"The maximum Moment of the above is:", maximumMoment
)
输出:
The three Moments are: Mon Jul 11 2022 01:15:34 GMT+0530 Tue Jul 26 2022 01:15:34 GMT+0530 Wed Oct 11 2023 01:15:34 GMT+0530 The maximum Moment of the above is: Moment<2023-10-11T01:15:34+05:30>
示例 2:
Javascript
const moment = require('moment');
let momentA = moment();
let momentB = moment().add(15, 'hours');
let momentC = moment().add(1000, 'seconds');
console.log(
`The three Moments are:
${momentA}
${momentB}
${momentC}
`);
let maximumMoment2 =
moment.max([momentA, momentB, momentC]);
console.log(
"The maximum Moment of the above is:", maximumMoment2
)
输出:
The three Moments are: Mon Jul 11 2022 01:15:34 GMT+0530 Mon Jul 11 2022 16:15:34 GMT+0530 Mon Jul 11 2022 01:32:14 GMT+0530 The maximum Moment of the above is: Moment<2022-07-11T16:15:34+05:30>
参考:https://momentjs.com/docs/#/get-set/max/
相关用法
- Moment.js moment().millisecond()用法及代码示例
- Moment.js moment().min()用法及代码示例
- Moment.js moment().month()用法及代码示例
- 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().set()用法及代码示例
- Moment.js moment().toString()用法及代码示例
- Moment.js moment().local()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Moment.js moment().max() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。