MomentJS - Second



This method will get/set the seconds. It takes input from 0-59; if greater than the range provided, then it will add to the minutes.

Syntax

moment().second(Number);
moment().second();
moment().seconds(Number);
moment().seconds();

Example

var m = moment().second(); //gives current second
var d = moment().second(10); //sets the second to 10 as shown below

Output

Second
momentjs_getter_setter.htm
Advertisements