Test name | Executions per second |
---|---|
test1 | 85408680.0 Ops/sec |
test2 | 21656138.0 Ops/sec |
test3 | 21311712.0 Ops/sec |
const g = { e: [] }
g.o = function(x) { g.e.push( [1,2,3]) }
g.o()
let g = { e: [] }
g.o = function(x) { g.e.push( [1,2,3]) }
g.o()
var g = { e: [] }
g.o = function(x) { g.e.push( [1,2,3]) }
g.o()