v1
10/27/2024 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



const object = {
	foo: 'foo',
	bar: 'bar',
	baz: 'baz',
	qux: 'qux',
	quux: 'quux'
};
const output = [];
const iterable = Object.entries(object);
for (const [key, value] of iterable) {
	output.push(value);
}

delete caserun single casemove updrag and drop case


ready



const map = new Map([
	['foo', 'foo'],
	['bar', 'bar'],
	['baz', 'baz'],
	['qux', 'qux'],
	['quux', 'quux']
]);
const iterable = map.entries();
const output = [];
for (const [key, value] of iterable) {
	output.push(value);
}
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