Test name | Executions per second |
---|---|
Multiplication | 84643312.0 Ops/sec |
Exponential | 92910232.0 Ops/sec |
<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
const a = 2;
const b = 3;
const result = a * b;
const x = 2;
const result = Math.exp(x);