Lodash Tutorial
Selected Reading
- Lodash - Discussion
- Lodash - Useful Resources
- Lodash - Quick Guide
- Lodash - Methods
- Lodash - Properties
- Lodash - Util
- Lodash - String
- Lodash - Seq
- Lodash - Object
- Lodash - Number
- Lodash - Math
- Lodash - Lang
- Lodash - Function
- Lodash - Date
- Lodash - Collection
- Lodash - Array
- Lodash - Environment Setup
- Lodash - Overview
- Lodash - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Lodash - Date
Lodash - Date
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
1601614929848Advertisements