v1
5/19/2022 by relu -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const arr = [];
for (let i = 0; i < 10000; i++) {
    arr.push(["key"+i, "value"+i]);
}
const map = new Map(arr);
const key = Math.random()*10000;
delete caserun single casemove downdrag and drop case


ready



if(map.has(key)){
  const result = map.get(key);
  result + Math.pow(2,2);
}
delete caserun single casemove updrag and drop case


ready



const element = map.get(key);
if(element){
	element + Math.pow(2,2);
}
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