Date Format
IST,UTC to DD/MM/YYYY
JavaScript
var date = new Date('Wed Oct 12 2016 13:24:11 GMT+0530 (India Standard Time)');
alert((date.getMonth() + 1) + '/' + date.getDate() + '/' + date.getFullYear());
var date1 = new Date('Wed Oct 12 13:31:59 UTC+0530 2016');
alert((date1.getMonth() + 1) + '/' + date1.getDate() + '/' + date1.getFullYear());