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.
moment().second(Number); moment().second(); moment().seconds(Number); moment().seconds();
var m = moment().second(); //gives current second var d = moment().second(10); //sets the second to 10 as shown below