Lodash - Date



Lodash provides a now function to get the current time in milliseconds.

Syntax

 _.now() 

Gets the timestamp of the number of milliseconds that have elapsed since the Unix epoch (1 January 1970 00:00:00 UTC).

Output

  • (number) − Returns the timestamp.

Example

 var _ = require('lodash'); var result = _.now(); console.log(result); 

Save the above program in tester.js. Run the following command to execute this program.

Command

 \>node tester.js 

Output

 1601614929848 
Advertisements