Test name | Executions per second |
---|---|
test1 | 23335582.0 Ops/sec |
test2 | 5684194.0 Ops/sec |
test3 | 5375150.5 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()