v1
- by thomasjammet 6/7/202100
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const map = new Map();
const count = 100000; 
for (let i = 0; i < count; ++i) {
	map.set("test_"+i, i);
}
delete caserun single casemove downdrag and drop case


ready



let val = map.entries().next().value;
//map.set(val[0], val[1] + 1);
delete caserun single casemove upmove downdrag and drop case


ready



let [[key, val]] = map;
//map.set(key, val + 1);
delete caserun single casemove upmove downdrag and drop case


ready



let val = map[Symbol.iterator]().next().value;
//map.set(val[0], val[1] + 1);
delete caserun single casemove updrag and drop case


ready



let val = Array.from(map)[0];
//map.set("test_0", val + 1);
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