El método moment().min() se usa para devolver el Momento mínimo (o el pasado más distante) de la array dada de objetos Momento. Devolverá la instancia Momento de la hora actual si no se pasa ningún argumento.
Sintaxis:
moment().min( Moment[] );
Parámetros: este método acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
- Moment[]: Esta es una array de objetos Moment de la que se debe devolver el mínimo. es un parámetro opcional.
Valor devuelto: este método devuelve el Momento mínimo de la array dada de objetos de Momento.
Nota: Esto no funcionará en el programa Node.js normal porque requiere que una biblioteca moment.js externa se instale globalmente o en el directorio del proyecto.
Moment.js se puede instalar con el siguiente comando:
Instalación del módulo de momentos:
npm install moment
Los siguientes ejemplos demostrarán el método Moment.js moment().min() .
Ejemplo 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() )
Producción:
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
Ejemplo 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() )
Producción:
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
Referencia: https://momentjs.com/docs/#/get-set/min/
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA