English 中文(简体)
Lodash - Date
  • 时间:2024-09-17

Lodash - Date


Previous Page Next Page  

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

Syntax


_.now()

Gets the timestamp of the number of milpseconds 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