El método moment().max() se usa para devolver el Momento máximo (o el futuro más lejano) de la array dada de objetos Moment. Devolverá la instancia Momento de la hora actual si no se pasa ningún argumento.
Sintaxis:
moment().max( 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áximo. es un parámetro opcional.
Valor devuelto: este método devuelve el Momento máximo 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 momento :
npm install moment
Los siguientes ejemplos demostrarán el método Moment.js moment().max() .
Ejemplo 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 )
Producción:
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>
Ejemplo 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 )
Producción:
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>
Referencia: https://momentjs.com/docs/#/get-set/max/
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA