Test name | Executions per second |
---|---|
For-Each | 16738.5 Ops/sec |
map + filter twice | 20723.4 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() {}
const exampleObjects = Array.from(Array(1000)).map((_, i) => {
const randomId = Math.round(Math.random() * 100);
const otherRandomId = Math.round(Math.random() * 100);
return {
objectId: i % 3 === 0 ? undefined : randomId.toString(),
clientObjectId: i % 4 === 0 ? undefined : otherRandomId.toString(),
}
});
const objectIds = new Set(exampleObjects.map(i => i.objectId).filter(i => i !== undefined));
const clientObjectIds = new Set(exampleObjects.map(i => i.clientObjectId).filter(i => i !== undefined));
const exampleObjects = Array.from(Array(1000)).map((_, i) => {
const randomId = Math.round(Math.random() * 100);
const otherRandomId = Math.round(Math.random() * 100);
return {
objectId: i % 3 === 0 ? undefined : randomId.toString(),
clientObjectId: i % 4 === 0 ? undefined : otherRandomId.toString(),
}
});
const objectIds = new Set();
const clientObjectIds = new Set();
for (const i of exampleObjects) {
if (i.objectId) objectIds.add(i.objectId);
if (i.clientObjectId) clientObjectIds.add(i.clientObjectId);
}