v1
2/8/2020 by barkalov -20
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
let c = 100000;
const numberAsStrings = []
for (let i = 0; i < c; i++) {
  const number = Math.random() * 10000000;  
  numberAsStrings[i] = number.toString();
}
delete caserun single casemove downdrag and drop case


ready



let result1 = [];
for (let i = 0; i < c; i++) {
  result1[i] = +numberAsStrings[i];
}
delete caserun single casemove upmove downdrag and drop case


ready



let result2 = [];
for (let i = 0; i < c; i++) {
  result2[i] = Number(numberAsStrings[i]);
}
delete caserun single casemove updrag and drop case


ready



let result3 = [];
for (let i = 0; i < c; i++) {
  result3[i] = parseFloat(numberAsStrings[i]);
}
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