getUTCMinutes < Date < JavaScript
The getUTCMinutes() method of the Date object returns the minutes for the date according to universal time.
const date = new Date('July 20, 2020 21:36:00 GMT+07:00');
utcMinutes = date.getUTCMinutes();
console.log(utcMinutes);
// 36