最佳答案
我知道很多创建 JS 对象的方法,但是我不知道 Object.create(null)的方法。
问题:
是不是和:
var p = {}
对
var p2 = Object.create(null);
?