To get the current time in Javascript, you can use the Date() object and its methods such as getHours() and getMinutes().
index.tsx238 chars8 linesIf you need to format the time output in a different way, you can use the toLocaleTimeString() method which allows you to specify the locale and options:
index.tsx154 chars4 linesThis will give you the time in a format like 9:47:15 AM.
gistlibby LogSnag