Setel slot waktu dengan tanggal dalam javascript

function (cb){

         var duration = 60;
         var freeSlots = [];

         var workingStartTime = 2018-05-12T08:00:00.000Z; 
         var workingEndTime = 2018-05-12T22:00:00.000Z;

         var busySlots = [];
         busySlots.push({ start_time: "2018-05-12T14:30:00.000Z",end_time: "2018-05-12T17:45:00.000Z" }) ;
         busySlots.push({ start_time: "2018-05-12T20:30:00.000Z",end_time: "2018-05-12T21:45:00.000Z" }) ;

         var beginAt = workingStartTime;
         var overAt = workingEndTime;
         var count = 0;
         var last = busySlots.length;

         async.forEach(busySlots, function (item, callback){

             /*** Library funcition to gind difference between two dates (Minutes) ***/
             var diff = libFunc.getRange(beginAt, item.start_time,TIME_UNITS.MINUTES);
             if(diff > duration){
               let free = {"start_time":beginAt , "end_time":item.start_time};
               freeSlots.push(free);
               beginAt = item.end_time;
               count += 1;

               /** Process for end slot **/
               if(last == count){
                 var diff = libFunc.getRange(item.end_time, overAt, TIME_UNITS.MINUTES);
                 if(diff > duration){
                   let free = {"start_time":item.end_time , "end_time":overAt};
                   freeSlots.push(free);
                   callback();
                 }else{
                   callback();
                 }
               }else{
                 callback();
               }
               /** Process for end slot **/

             }else{
               beginAt = item.end_time;
               count += 1;

               /** Process for end slot **/
               if(last == count){
                 var diff = libFunc.getRange(item.end_time, overAt, TIME_UNITS.MINUTES);
                 if(diff > duration){
                   let free = {"start_time":item.end_time , "end_time":overAt};
                   freeSlots.push(free);
                   callback();
                 }else{
                   callback();
                 }
               }else{
                 callback();
               }
               /** Process for end slot **/
             }

         }, function(err) {
           // console.log(freeSlots);
             cb(null);
         });
       },
Long Lynx