The getMinutes() method of the Date object returns the minutes for the date according to local time.

    
    const event = new Date('July 20, 2020 21:36:00');

    const minutes = event.getMinutes();

    console.log(minutes);
    // 36