当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。