A. cool[5] B. cool(5) C. cool[4] D. cool(4)
A. obj.age=20; B. obj["age"]=20; C. obj."age"=20 D. obj={age:20}
A. function f() { }; B. var f=new Function("{ }"); C.var f=function() { }; D. f(){ };