v1
6/24/2023 by roviury -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
var map = new Map(new Array(4000).fill(0).map((e, idx) => [((+(idx + Math.random()).toFixed(4))) + "", (((idx - Math.random()).toFixed(4))) - 0.0]));
var sum = 0; 
delete caserun single casemove downdrag and drop case


ready



map.forEach((_value, key) => {
	sum+=_value;
})
delete caserun single casemove upmove downdrag and drop case


ready



[...map.keys()].forEach(key => {
	sum+=map.get(key);
})
delete caserun single casemove upmove downdrag and drop case


ready



for (const [key] of map) sum+=map.get(key);
delete caserun single casemove updrag and drop case


ready



for (const key of map.keys()) sum+=map.get(key);
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