need to replace GMT+0530 (India Standard Time) to IST dynamically for multiple array list
for now my array list has 6 entries. need to replace for all the array list .
function getTimeAccordingtoTimeZone(utc){
    utc  = new Date(Date.parse(utc));
    var dateUTC = utc ;
    var dateIST = new Date(dateUTC);
    //date shifting for IST timezone (+5 hours and 30 minutes)
    var current_time_zone = getCurrentTimeZone();
    var hour_diff = parseInt(current_time_zone);
    var minute_diff = current_time_zone - hour_diff;
    minute_diff = minute_diff*60;
    dateIST.setHours(dateIST.getHours() + hour_diff);
    dateIST.setMinutes(dateIST.getMinutes() + minute_diff);
    var new_date = dateIST;
    return new_date;
}
new_date returns
Tue Jan 15 2019 22:49:04 GMT+0530 (India Standard Time)
Tue Jan 15 2019 22:49:04 GMT+0530 (India Standard Time)
Tue Jan 15 2019 22:49:04 GMT+0530 (India Standard Time)
Tue Jan 15 2019 22:49:04 GMT+0530 (India Standard Time)
Tue Jan 15 2019 22:49:04 GMT+0530 (India Standard Time)
Tue Jan 15 2019 22:49:04 GMT+0530 (India Standard Time)
 
    