var timeArr = moment().format(\'HH:mm:ss\').split(\':\'); var timeInMilliseconds = (timeArr[0] * 3600000) + (timeArr[1] * 60000);
This solution works,
From the docs: http://momentjs.com/docs/#/parsing/unix-timestamp-milliseconds/
So use either of these:
moment(...).valueOf()
to parse a preexisting date and convert the representation to a unix timestamp
moment().valueOf()
for the current unix timestamp