I have a log with timestamps like, for example, 1686184163560519943. www.unixtimestamp.com says they're nanoseconds. I want to convert these to Date() and then to toLocaleTimeString().
Date() does not like this input and throws Invalid Date.
The prior people of the internet all seem to interested in getting to nanoseconds, not from them as I am.
Part of the problem, I think, is that when you convert it out of string form, what holds it is BigInt, and Date() doesn't want to take a BigInt.
 
    