When I want to figure out how fast my JavaScript is I usually resort to "estimating" how fast it appears to be, this is extremely inefficient and most times I'm outright wrong.
In Ubuntu when you want to tell how long a program took to run, you'd use the time
command like this:
time script_name.py
The output would look like this:
program output....
real 0m0.123s
user 0m0.123s
sys 0m0.123s
How can I get FireFox to show me similar information in the browser console?
NOTE: I'm using the latest version of FireFox & Lubuntu 18.04 (LTS).