Is it possible to log calling performance.now()
in Javascript in console?
I could not get result in console and I think performance.now()
is not an event that can be observable in console as an event.
My code:
function myFunction() { Hi(); } function Hi() { performance.now(); }