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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。