The setUTCMinutes() method of the Date object sets the minutes of the date (according to UTC).

    
    const event = new Date('July 20, 2020, 13:55:30 GMT-0500');

    event.setUTCMinutes(25);

    const minutes = event.getUTCMinutes();
    console.log(minutes);
    // 25