Seconds, with leading zeros
var secs = this.date.getSeconds() + ""; return (secs.length == 1) ? "0" + secs : secs;