I have a string as Mon 03-Jul-2017, 11:00 AM/PM and I have to convert this into a string like 11:00 AM/PM using moment js.
The problem here
you will get the time without specifying the date format. convert the string to date using Date object
var myDate = new Date('Mon 03-Jul-2017, 06:00 PM');
working solution:
var myDate= new Date('Mon 03-Jul-2017, 06:00 PM');
console.log(moment(myDate).format('HH:mm')); // 24 hour format
console.log(moment(myDate).format('hh:mm'));
console.log(moment(myDate).format('hh:mm A'));