getUTCDate < Date < JavaScript
The getUTCDate() method of the Date object returns the day of the month for the date according to universal time.
const date = new Date('July 20, 2020 23:15:30 GMT+11:00');
const utcDate = date.getUTCDate());
console.log(utcDate);
// 20