v1
6/19/2020 by Lamik -00
disable setup HTML
Setup HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" />
disable setup JavaScript
Setup JavaScript
let myArray = [...Array(10000)].map((x,i)=> ({'id':`${i}`, 'foo':`bar_${i}`}));

const mapK = new Map( myArray.map(el => [el.id, el]) ); // For precalculated solution
const mapL = {}; myArray.forEach(el => mapL[el.id]=el); // For precalculated solution

let test = f => {
  for(let i=0; i<10; i++) {
    f(myArray,'555555'); // not exist
    f(myArray,'666666'); // not exist
    f(myArray,'777777'); // not exist
    f(myArray,'888888'); // not exist
    f(myArray,'999999'); // not exist
  }
}
delete caserun single casemove downdrag and drop case


ready



function A(arr, id) {
  return arr.find(o=> o.id==id);
}

test(A);
delete caserun single casemove upmove downdrag and drop case


ready



function B(arr, id) {
  let idx= arr.findIndex(o=> o.id==id);
  return arr[idx];
}

test(B);
delete caserun single casemove upmove downdrag and drop case


ready



function C(arr, id) {
  return arr.filter(o=> o.id==id)[0];
}

test(C);
delete caserun single casemove upmove downdrag and drop case


ready



function D(arr, id) {
  return arr.reduce((a, b) => (a.id==id && a) || (b.id == id && b));
}

test(D);
delete caserun single casemove upmove downdrag and drop case


ready



function E(arr, id) {
  for (var i = 0; i < arr.length; i++) if (arr[i].id==id) return arr[i];
  return null;
}

test(E);
delete caserun single casemove upmove downdrag and drop case


ready



function F(arr, id) {
  var retObj ={};
  $.each(arr, (index, obj) => {
    if (obj.id == id) { 
      retObj = obj;
      return false;
    }
  });
  return retObj;
}

test(F);
delete caserun single casemove upmove downdrag and drop case


ready



function G(arr, id) {
  return $.grep(arr, e=> e.id == id )[0];
}

test(G);
delete caserun single casemove upmove downdrag and drop case


ready



function H(arr, id) {
  return $.map(myArray, function(val) {
    return val.id == id ? val : null;
  })[0];
}

test(H);
delete caserun single casemove upmove downdrag and drop case


ready



function I(arr, id) {
  return _.find(arr, o => o.id==id);
}

test(I);
delete caserun single casemove upmove downdrag and drop case


ready



let J = (()=>{
  let cache = new Map();
  return function J(arr,id,el=null) { 
    return cache.get(id) || (el=arr.find(o=> o.id==id), cache.set(id,el), el);
  }
})();

test(J);
delete caserun single casemove upmove downdrag and drop case


ready



function K(arr, id) {
  return mapK.get(id)
}

test(K);
delete caserun single casemove updrag and drop case


ready



function L(arr, id) {
  return mapL[id];
}

test(L);
Test Case - click to add another test case
Teardown JS - click to add teardown JavaScript
Output (DOM) - click to monitor output (DOM) while test is running
RUN