v3
- by ivanshatsky 10/19/202100
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
// specify source data array size here
const size = 1000;
let data = [];
for (let index = 0; index < size; index++) {
	data.push({"name":`item${index}`, "value": index});
}
delete caserun single casemove downdrag and drop case


ready



let values = [];
for (let index = 0; index < data.length; index++) {
	values.push(data[index].name);
}
delete caserun single casemove upmove downdrag and drop case


ready



let values = [];
for (let item of data) {
	values.push(item.name); 
}
delete caserun single casemove upmove downdrag and drop case


ready



let values = data.map(item => item.name);
delete caserun single casemove upmove downdrag and drop case


ready



let values = [];
data.forEach(item => values.push(item.name));
delete caserun single casemove updrag and drop case


ready



let values = [];
for (let index in data) {
	values.push(data[index].name); 
}
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