Test name | Executions per second |
---|---|
Regular | 24307.1 Ops/sec |
Test | 23712.8 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 position = "Midfielder"
Array(100).fill(position).map((p) => [crypto.randomUUID(), p])
const position = "Midfielder"
Array.from({ length: 100 }, () => [crypto.randomUUID(), position])