var a = [1,2.3];Object.prototype.toString(a); //-> [object Object]
Object.prototype.toString.call(a); //-> [object Array]这两句有什么不同吗?我有点迷惑