Object.prototype.toString.call(this)和Object.prototype.toString(this)的区别;
function fo(){
console.log(this);
console.log(Object.prototype.toString.call(this));
console.log(Object.prototype.toString(this));
}
fo.call("hello");
运行结果:
String { 0="h", 1="e", 2="l", 3="l" ,4="o"}
[object String]
[object Object]
求解释以上的三种结果