It amazes me that even new languages like #TypeScript or #Swift don’t have a Time type. I know, timezones etc, but converting it to a Date (1970-01-01 + time) or just using strings (HH:mm) just doesn‘t seem right. Same goes for some databases.
@tt The `Temporal` API proposal, currently in TC39 stage 3 (https://tc39.es/proposal-temporal/docs), should hopefully make this better (for JS/TS) 🤞
Temporal documentation

@lucsky @tt yeah as far as i know this is based on ideas from the moment.js library, it will become core to the language
@laskov @lucsky PlainTime seems to be exactly what I need, thank you.