number of vars

Benchmark created on


Preparation HTML

<script>
  var test = function() {};
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
one var
var x = "abc",
    y = 123,
    z;

test();
ready
multi var
var x = "abc";
var y = 123;
var z;

test();
ready

Revisions

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