當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Moment.js moment().min()用法及代碼示例


moment().min() 方法用於返回給定 Moment 對象數組的最小(或最遠的過去)Moment。如果沒有傳遞參數,它將返回當前時間的 Moment 實例。

用法:

moment().min( Moment[] );

參數:該方法接受如上所述和如下所述的單個參數:

  • 片刻[]:這是一個 Moment 對象數組,必須從中返回最小的一個。它是一個可選參數。

返回值:此方法返回給定 Moment 對象數組的最小 Moment。

注意:這在普通的 Node.js 程序中不起作用,因為它需要全局安裝或在項目目錄中安裝外部moment.js 庫。

Moment.js 可以使用以下命令安裝:

moment模塊的安裝:

npm install moment

以下示例將演示 Moment.js moment().min() 方法。

示例 1:

Javascript


const moment = require('moment'); 
  
let momentOne = moment(); 
let momentTwo = moment().subtract(15, 'days'); 
let momentThree = moment().subtract(25, 'days'); 
  
console.log( 
`The three Moments are: 
    ${momentOne} 
    ${momentTwo} 
    ${momentThree} 
`); 
  
let minimumMoment = 
    moment.min([momentOne, momentTwo, momentThree]); 
console.log( 
    "The minimum of the Moments from the above is:", 
    minimumMoment.toString() 
)

輸出:

The three Moments are:
    Mon Jul 11 2022 01:12:38 GMT+0530
    Sun Jun 26 2022 01:12:38 GMT+0530
    Thu Jun 16 2022 01:12:38 GMT+0530

The minimum of the Moments from the above is:
     Thu Jun 16 2022 01:12:38 GMT+0530

示例 2:

Javascript


let momentA = moment(); 
let momentB = moment().subtract(20, 'seconds'); 
let momentC = moment().subtract(120, 'milliseconds'); 
  
console.log( 
`The three Moments are: 
    ${momentA} 
    ${momentB} 
    ${momentC} 
`); 
  
let minimumMoment2 =  
    moment.min([momentA, momentB, momentC]); 
console.log( 
    "The minimum of the Moments from the above is:", 
    minimumMoment2.toString() 
)

輸出:

The three Moments are:
    Mon Jul 11 2022 01:12:38 GMT+0530
    Mon Jul 11 2022 01:12:18 GMT+0530
    Mon Jul 11 2022 01:12:38 GMT+0530

The minimum of the Moments from the above is:
     Mon Jul 11 2022 01:12:18 GMT+0530

參考: https://momentjs.com/docs/#/get-set/min/



相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Moment.js moment().min() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。