mutiple_varsVSsingle_var_pattern

Benchmark created by Tomas Corral on


Test runner

Ready to run.

Testing in
TestOps/sec
Multiple vars
var a = 1;
var b = 2;
var c = {};
var d = [];
var e = "hola";
var f = new String("hol");
ready
single var pattern
var a = 1,
    b = 2,
    c = {},
    d = [],
    e = "hola",
    f = new String("hol");
ready

Revisions

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

  • Revision 1: published by Tomas Corral on