semicolon vs none

Benchmark created on


Preparation HTML

<div id='test'></div>

Test runner

Ready to run.

Testing in
TestOps/sec
semicolon
var test = document.getElementById("test")
test.rel = "hi"
ready
no semi
var test = document.getElementById("test");
test.rel = "hi";
ready

Revisions

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