Why is Object.prototype.toString.prototype undefined
Object.prototype.toStringFunctionDaily thinking
 Object.prototype.toString.prototype  //undefined
questions
all functions have prototype, but why is it undefined in the example? And undefined is not an object
 there is a saying on javascript that you don"t know: all functions have a public and non-enumerable property named prototype by default. 
 so I"m curious, and for example, Math.max doesn"t have a prototype attribute 
