I used MomentJS to convert local date to UTC date using the following way:
To get the time from the date use the format method of momentjs
var date = moment('2016-10-11 18:06:03').tz('Europe/Paris').format();
console.log(date);
console.log(moment(date).format("X"));
console.log(moment(date).format("x")); // for milliseconds
console.log(moment(date).format("HH:mm"));
console.log(moment(date).format("hh:mm A"));