El date-and-time.Date.parse() analiza la fecha de acuerdo con un cierto patrón.
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:
parse(dateString, arg)
Parámetros : este método toma los siguientes argumentos como parámetros:
- dateString: Es el objeto string de la fecha
- arg: Es el formato de fecha requerido.
Valor devuelto: este método devuelve la fecha y la hora analizadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.parse() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date('07-03-2021'); // Parsing the date and time // by using date.parse() method const value = date.parse(now.toLocaleDateString(),'D/M/YYYY'); // Display the result console.log("parsed date and time : " + value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
parsed date and time : Thu Jan 01 1970 00:00:00 GMT+0530 (India Standard Time)
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.parse() method // Importing module const date = require('date-and-time') // Parsing the date and time // by using date.parse() method const value = date.parse('23:14:05 GMT+0900','HH:mm:ss [GMT]Z'); // Display the result console.log("Parsed date and time : " + value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
Parsed date and time : Thu Jan 01 1970 19:44:05 GMT+0530 (India Standard Time)
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