Test name | Executions per second |
---|---|
const | 77194880.0 Ops/sec |
let | 20016978.0 Ops/sec |
var | 20817244.0 Ops/sec |
const g = { e: [] }
g.o = function(x) { g.e.push( [1,2,3]) }
g.o()
return g;
let g = { e: [] }
g.o = function(x) { g.e.push( [1,2,3]) }
g.o()
return g;
var g = { e: [] }
g.o = function(x) { g.e.push( [1,2,3]) }
g.o()
return g;