El date-and-time.Date.isValid() valida la fecha y la hora en particular con su formato de string.
Módulo requerido: instale el módulo por npm o utilícelo localmente.
- Usando npm.
npm install date-and-time --save
- Mediante el uso de un enlace CDN.
<script src="/path/to/date-and-time.min.js"></script>
Sintaxis:
isValid(arg1[, arg2])
Parámetros: este método toma los siguientes argumentos como parámetros:
- arg1: Es el objeto de fecha y hora.
- arg2: Es el formato de string de la fecha dada.
Valor de retorno: este método devuelve verdadero si y solo si se validan los términos.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.isValid() method // Importing date-and-time module const date = require('date-and-time') // Parsing the date and time // by using date.parse() method const status = date.isValid('29-02-2015', 'DD-MM-YYYY'); // Display the result if(status) console.log("Date is valid") else console.log("Date is not invalid")
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Date is not invalid
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.isValid() method // Importing date-and-time module const date = require('date-and-time') // Pre parsing the date and time // by using preparse() method const result = date.preparse('2015/01/02 23:14:05', 'YYYY/MM/DD HH:mm:ss'); // Validating the terms // by using date.isValid() method const status = date.isValid(result); // Display the result if(status) console.log("Date is valid") else console.log("Date is not invalid")
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Date is valid
Referencia: https://github.com/knowledgecode/date-and-time
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA