D
"name2" : function() {....}
Size: a a a
D
IN
k
D
IN
k
javascript
> const a = {"name" : function() {return 1}}
undefined
> const f = a["name"]
undefined
> f()
1
S
javascript
> const a = {"name" : function() {return 1}}
undefined
> const f = a["name"]
undefined
> f()
1

k
k
k
D
k
IN
k
D
D
D
D
IN
⠀
let funcObj = {}