使用: Object.create(null)生成的空对象在原型对象上也没有任何属性和方法.
var obj = Object.create(null); obj; // {} obj.toString(); // Error; obj.valueOf(); // Error;