Test

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
test 1
const a = [0,1,2,3,4,5]

a.forEach(b=>{
	console.log(b)
})
ready
test 2
const a = [0,1,2,3,4,5]

for(let b of a){
	console.log(b)
}
ready
test 3
const a = [0,1,2,3,4,5]

for(let i= 0; i<a;i++){
	console.log(i)
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.