v1
1/24/2020 by inphinitphp 1/24/202000
Setup HTML - click to add setup HTML
Setup JS - click to add setup JavaScript
delete caserun single casemove downdrag and drop case


ready



var number = '18';
while (number.length < 9) { number += '0'; }
parseInt(number);
delete caserun single casemove upmove downdrag and drop case


ready



var number = '18';
number = number.padEnd(9, '0');
parseInt(number);
delete caserun single casemove upmove downdrag and drop case


ready



var number = '18';
parseInt((number.toString() + '000000000').substring(0, 8));
delete caserun single casemove updrag and drop case


ready



var numero = 18;
parseInt(numero * Math.pow(10, 8 - Math.log(numero) * Math.LOG10E + 1 | 0));
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