Test name | Executions per second |
---|---|
test1 | 10247422.0 Ops/sec |
test2 | 13143661.0 Ops/sec |
test3 | 14920969.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()