I have the following code
var d = new Date();
Object.prototype.toString(d); //outputs "[object Object]"
Object.prototype.toString.apply(d); //outputs "[object Date]"
Why is this difference and what's going on?
edit:
d.toString() // outputs "Tue Nov 06 2012 ..."
So from where does the Date in "[object Date]" comes from. Is it the native code of the browser that do the trick?