var arr=[1,2,3]console.log(arr.__proto__);//数组的所有方法console.log(arr.__proto__ == Array.prototype);//trueconsole.log(arr.__proto__.__proto__)//;object.prototypeconsole.log(arr.__proto__.__proto__ == Object.prototype)//trueconsole.log(arr.valueOf())//[1, 2, 3]

