v1
3/13/2023 by sheeptester -00
Setup HTML - click to add setup HTML
disable setup JavaScript
Setup JavaScript
const nums = []
for (let i = 1000; i--;) {
	nums.push(Math.floor(Math.random() * 601 - 300))
}
let result
delete caserun single casemove downdrag and drop case


ready



result = nums.map(n => +`1e${n}`)
delete caserun single casemove upmove downdrag and drop case


ready



// has rounding errors
result = nums.map(n => 10 ** n)
delete caserun single casemove upmove downdrag and drop case


ready



// has rounding errors
result = nums.map(n => Math.pow(10, n))
delete caserun single casemove updrag and drop case


ready



// ...also has rounding errors
result = nums.map(n => {
	let product = 1
	for (let i = 0; i < n; i++) {
		product *= 10
	}
	for (let i = 0; i < -n; i++) {
		product /= 10
	}
	return product
})
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