{}.toString === Object.toString
This will return a false value while
{}.toString === Object.prototype.toString
is true.
we know that {}
is a object literal , is it the same as new Object
does? if this two things is equal,{}.toString and Object.toString should be the same, right?