Test name | Executions per second |
---|---|
test1 | 21300562.0 Ops/sec |
test2 | 20272378.0 Ops/sec |
test3 | 20395376.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()