The getUTCFullYear() method of the Date object returns the year for the date according to universal time.

    
    const date = new Date('July 20, 2020 21:36:00 GMT+11:00');

    const utcFullYear = date.getUTCFullYear();

    console.log(utcFullYear);
    // 2020