v2
- by ivinnic 8/12/202100
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



{
	
	let r=[]
	let a,b,c;
	for(let i =0; i< 10000; i++){
  		a=i*2
  		b=i*a
  		c = i/2 
  		r.push(a+b+c)
	}
}
eval('')
delete caserun single casemove updrag and drop case


ready



{
	
	let r=[]
	for(let i =0; i< 10000; i++){
  		let a=i*2
  		let b=i*a
  		let c = i/2
 		r.push(a+b+c)
	}
}
eval('')
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