Const, let

Benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Const
for(let i = 0 ; i< 200 ; i++){
	const rand = 'value'
}
ready
Let
for(let i = 0 ; i< 200 ; i++){
	let rand = 'value'
}
ready

Revisions

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