Underscore.JS - now method
Syntax
_.now()
now method return a current timestamp using fastest method available at run time. See the below example −
Example
var _ = require('underscore');
console.log(_.now());
Save the above program in tester.js. Run the following command to execute this program.
Command
\>node tester.js
Output
1590549158176
underscorejs_utilities.htm
Advertisements