Moment.js moment().valueOf() Function Last Updated : 20 Mar, 2023 Comments Improve Suggest changes Like Article Like Report The moment().valueOf() function is used to get the number of milliseconds since the Unix Epoch. Basically, Unix time is a system for describing a point in time. Syntax: moment().valueOf(); Parameters: This function has no parameters. Return Value: This function returns the Unix Timestamp in milliseconds. Installation of moment module: You can visit the link to Install moment module. You can install this package by using this command. npm install moment After installing the moment module, you can check your moment version in the command prompt using the command. npm version moment Project Structure: After that, you can just create a folder and add a file, for example, index.js as shown below. Example 1: Filename: index.js javascript // Requiring the module const moment = require('moment'); // Function call let result = moment().valueOf(); console.log("Result:", result) Steps to run the program: Run the index.js file using the below command: node index.js Output: Result: 1595006948726 Example 2: Filename: index.js javascript // Requiring the module const moment = require('moment'); function getUnixTimeStamp() { return moment().valueOf(); } // Function call let result = getUnixTimeStamp(); console.log("Unix Timestamp:", result) Steps to run the program: Run the index.js file using the below command: node index.js Output: Unix Timestamp: 1595007021164 Reference: https://momentjs.com/docs/#/displaying/unix-timestamp-milliseconds/ Comment More infoAdvertise with us Next Article Moment.js moment().valueOf() Function G gouravhammad Follow Improve Article Tags : Web Technologies Node.js Moment.js Similar Reads Moment.js moment().to() Function The moment().to() function is used when users want to display a moment in relation to a time other than now. This function calculates the time to a particular date in Node.js. Syntax: moment().to(Moment|String|Number|Date|Array, Boolean); Parameters: This function has two parameters, first one is o 2 min read Moment.js moment().unix() Function The function moment().unix() retrieves the count of seconds since the Unix Epoch, which is a reference point for denoting a specific moment in time. Unix time serves as a system for timestamping.Syntax:moment().unix();Parameters: This function has no parameters. Return Value: This function returns t 1 min read Moment.js moment().toNow() Function The moment().toNow(Boolean) function is used to calculate the time to now in Node.js. This function is sometimes called time ago or relative time. Syntax: moment().toNow(Boolean); Parameters: This function has one optional boolean type parameter to return the value without a prefix. Return Value: 2 min read Moment.js moment().from() Function The moment().from() function is used to calculate the time from any other time in Node.js. It takes a date as a parameter and calculates the time from that date. Syntax: moment().from(Moment|String|Number|Date|Array, Boolean); Parameters: This function accepts two parameters, first is the date para 2 min read Moment.js isMoment() Function It is used to check whether a variable is a particular moment or not in Moment.js using the isMoment() function that checks if a variable is a moment object, use moment.isMoment(). Syntax: moment.isMoment(obj); Parameter: Object Returns: True or False Installation of moment module: You can visit t 2 min read Like