El formato date-and-time.Date.format() da formato a la fecha de acuerdo con un determinado 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:
format(dateObj, formatString[, utc])
Parámetros : este método toma los siguientes argumentos como parámetros:
- dateObj: Es el objeto de la fecha.
- formatString: Es el nuevo formato de string en el que se mostrará la fecha.
Valor devuelto: este método devuelve la fecha y la hora formateadas.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.format() method // Importing module const date = require('date-and-time') // Creating object of current date and time // by using Date() const now = new Date(); // Formatting the date and time // by using date.format() method const value = date.format(now,'YYYY/MM/DD HH:mm:ss'); // Display the result console.log("current date and time : " + value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
current date and time : 2021/03/07 12:13:46
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.format() method // Importing module const date = require('date-and-time') // Formatting the date and time // by using date.format() method const value = date.format((new Date('December 17, 1995 03:24:00')), 'YYYY/MM/DD HH:mm:ss'); // Display the result console.log("date and time : " + value)
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
date and time : 1995/12/17 03:24:00
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