Is there any way to get current time in nanoseconds using JavaScript?

Achieve microsecond accuracy in most browsers using:

window.performance.now()

See also:

Leave a Comment