Script Preparation code:
x
 
function getRandomElement(id) {
  return {
    id,
    a: Math.random(),
    b: Math.random(),
    c: Math.random(),
  }
}
function getArray(length) {
  const result = [];
  for (let i = 0; i < length; i++) {
    result.push(getRandomElement(i))
  }
  
  return result;
}
function arrayToMap(array) {
  return new Map(array.map(el => [el.id, el]));
}
function cloneArray(array) {
  return [...array];
}
function cloneMap(map) {
  return new Map(map);
}
function getRandomInt(max) {
  return Math.floor(Math.random() * max);
}
array_small = getArray(3);
array_large = getArray(10);
map_small = arrayToMap(array_small);
map_large = arrayToMap(array_large);
Tests:
  • Array.find, 3 elements

     
    const target = getRandomInt(2);
    array_small.find(el => el.id === target);
  • Map.get, 3 elements

     
    const target = getRandomInt(2);
    map_small.get(target);
  • Array.find, 10 elements

     
    const target = getRandomInt(9);
    array_large.find(el => el.id === target);
  • Map.get, 10 elements

     
    const target = getRandomInt(9);
    map_large.get(target)
  • Clone array 3

     
    const array = cloneArray(array_small);
  • Clone map 3

     
    const map = cloneMap(map_small);
  • Clone array 10

     
    const array = cloneArray(array_large);
  • Clone map 10

     
    const map = cloneMap(map_large);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Array.find, 3 elements
    Map.get, 3 elements
    Array.find, 10 elements
    Map.get, 10 elements
    Clone array 3
    Clone map 3
    Clone array 10
    Clone map 10

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
Chrome 119 on Windows
View result in a separate tab
Test name Executions per second
Array.find, 3 elements 1176284.6 Ops/sec
Map.get, 3 elements 1132418.9 Ops/sec
Array.find, 10 elements 685130.9 Ops/sec
Map.get, 10 elements 969429.2 Ops/sec
Clone array 3 2325328.5 Ops/sec
Clone map 3 1150065.5 Ops/sec
Clone array 10 2323130.5 Ops/sec
Clone map 10 554955.6 Ops/sec