Open In App

Moment.js moment().millisecond() Method

The moment().millisecond()Method is used to get the milliseconds from the time or to set the milliseconds.

Syntax:



moment().millisecond();

// or

moment().milliseconds();

Parameters: This method accepts single parameter number that is used to set milliseconds then you will require an additional parameter:



Return Value: This function returns the current time in milliseconds.

Note: This will not work in the normal Node.js program because it requires the moment.js library to be installed. 

Moment.js can be installed using the following command:

npm install moment

Example 1: Getting current time in milliseconds.




// Acquiring the plugin
const moment = require('moment');
 
let mili = moment().millisecond();
 
console.log("Current Milliseconds Time:", mili);

Output:

Current Milliseconds Time: 274

Example 2: Setting milliseconds time in a variable.




// Acquiring the plugin
const moment = require('moment');
 
let mili = moment(199).millisecond();
 
console.log("Milliseconds Time:", mili);

Output:

Milliseconds Time: 199
Article Tags :