v1
10/11/2022 by turtlefight -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const data = [...Array(100000).keys()].map(e => "foo" + e)
delete caserun single casemove downdrag and drop case


ready



const obj = {}
for (const v of data) {
   obj[v] = v
}

for (const v of data) {
   obj[v] = v + 1
}

for (const v of data) {
   delete obj[v]
}
delete caserun single casemove updrag and drop case


ready



const obj = new Map()
for (const v of data) {
   obj.set(v, v)
}

for (const v of data) {
   obj.set(v, v + 1)
}

for (const v of data) {
   obj.delete(v)
}
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