Lodash – Date

  • Post author:
  • Post category:Lodash
  • Post comments:1 Comment
Lodash - Date

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

Syntax Of Lodash Date

_.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

Next Topic – Click Here

This Post Has One Comment

Leave a Reply