El método _.now() se usa para obtener la marca de tiempo de la cantidad de milisegundos que han transcurrido desde la época de Unix (1 de enero de 1970 00:00:00 UTC).
Sintaxis:
_.now()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la marca de tiempo.
Ejemplo 1:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Getting the timestamp console.log(_.now());
Producción:
1599545119753
Ejemplo 2:
Javascript
// Defining Lodash variable const _ = require('lodash'); // Creating print function to print // timestamp after delay of 10ms function print(){ setTimeout(() => { console.log( `Current timestamp is: ${_.now()}`) }, 10) } // Running this function 5 times // using _.times() function. _.times(5, print) console.log("Type of timestamp is: ", typeof(_.now()))
Producción:
Type of timestamp is: number Current timestamp is: 1599546710915 Current timestamp is: 1599546710916 Current timestamp is: 1599546710916 Current timestamp is: 1599546710916 Current timestamp is: 1599546710916
Nota: Esto no funcionará en JavaScript normal porque requiere que se instale la biblioteca lodash.
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA