v1
11/6/2022 by lmyers -00
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



var map = {};

for (let i = 0; i < 1000; i++) {
	map['key-' + i.toString()] = i;
}

var output = [];
for (let i = 0; i < 1000; i++) {
	output.push(map['key-' + i.toString()]);
}

delete caserun single casemove updrag and drop case


ready



var map = new Map();

for (let i = 0; i < 1000; i++) {
	map.set('key-' + i.toString(), i);
}

var output = [];
for (let i = 0; i < 1000; i++) {
	output.push(map.get('key-' + i.toString()));
}
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