If I set the prototype to null, then how come I can still use toString on the object?
var nakedObject=Object.create(null,{
name:{
configurable:true,
enumerable:true,
value:"Hello",
writable:true
}
});
console.log(nakedObject.name.toString());
console.log ("valueOf" in nakedObject);