El método date-and-time.Date.transform() se usa para transformar la fecha y la hora del formato de string existente al nuevo 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 del enlace CDN:
<script src="/path/to/date-and-time.min.js"></script>
Sintaxis:
const transform(dateString, arg1, arg2[, utc])
Parámetros: esta API toma los siguientes argumentos como parámetros.
- dateString: objeto String de la fecha.
- arg1: formato de string existente.
- arg2: Nuevo formato de string.
Valor devuelto: este método devuelve una string de formateador.
Ejemplo 1:
index.js
// Node.js program to demonstrate the // Date.transform() method // Importing http module const date = require('date-and-time') // Creating object of current date and time // by using Datw() const now = new Date(07-03-2021); // Changing the format of date and time // by using date.transform() api const value = date.transform( now.toLocaleDateString(), 'D/M/YYYY', 'YYYY/M/D'); // Display the result console.log("transformed date and time :- " + value)
Producción:
transformed date and time :- 1970/1/1
Ejemplo 2:
index.js
// Node.js program to demonstrate the // Date.transform() method // Importing http module const date = require('date-and-time') // Changing the format of date and time // by using date.transform() api const value = date.transform( '23:14:05 GMT+0900', 'HH:mm:ss [GMT]Z', 'YYYY/M/D'); // Display the result console.log("transformed date and time :- " + value)
Producción:
transformed date and time :- 1970/1/1
Referencia: https://github.com/knowledgecode/date-and-time#transformdatestring-arg1-arg2-utc
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA