I am using a version of Benchmark JS for node and I can't find any information about how to read the results.
Firstly, is there a place that details what all the data you can extract from Benchmark JS?
Secondly I am currently getting the following result in my console:
Test x 2,276,094 ops/sec ±0.84% (190 runs sampled)
What do all these bits of information mean?
Test: the name of my test, I know that one
x 2,276,094 ops/sec: I am assuming this is the average number of times the code could theoretically run in a second?
±0.84%: No idea
190 runs sampled: The amount of times benchmark ran the code to get the result?