some

Benchmark created on


Description

name

Test runner

Ready to run.

Testing in
TestOps/sec
map
 MEMBERS_DATA_DB=[
  { idMember: 1, name: 'John Doe', email: 'john.doe@example.com' },
  { idMember: 2, name: 'Jane Smith', email: 'jane.smith@example.com' },
  { idMember: 3, name: 'Alice Johnson', email: 'alice.johnson@example.com' }
]
        const MEMBERS_ID = MEMBERS_DATA_DB.map((_member) => _member.idMember);
ready
for
 MEMBERS_DATA_DB=[
  { idMember: 1, name: 'John Doe', email: 'john.doe@example.com' },
  { idMember: 2, name: 'Jane Smith', email: 'jane.smith@example.com' },
  { idMember: 3, name: 'Alice Johnson', email: 'alice.johnson@example.com' }
]
const MEMBERS_ID = [];
        for (const MEMBER of MEMBERS_DATA_DB) {
          MEMBERS_ID.push(MEMBER.idMember);
        }
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.