To UTC
new Date().toISOString() // 2021-07-27T08:33:50.576Z
Format US yyyy-MM-DD HH:mm
new Date().toISOString().replace(/:\d{2}\.\d{3}Z$/g, "").replace('T', ' '); // 2021-07-27 08:33
toLocaleTimeString
const options = { year: 'numeric', month: 'short', day: 'numeric', timeZone: 'UTC' }new Date().toLocaleTimeString('en-US', options) // Jul 27, 2021, 8:33:50 AM
References: