toTimeString < Date < JavaScript
The toTimeString() method of the Date object returns the time portion of a date object as a string in the local timezone. Your timezone may vary.
const event = new Date('July 20, 2020 21:36:00');
console.log(event)
// [object Date] { ... }
const timeString = event.toTimeString();
console.log(timeString);
// "21:36:00 GMT-0400 (Eastern Daylight Time)"