__proto__和 prototype 的区别是什么?
1.不能断章取义,__proto__ 和 prototype只是两个key而已
2. 我们一般研究对象的__proto__和函数的prototype
3. 对象.__proto__ === 某函数.prototype
4.如果把函数看成对象,那么函数.__proto__ === Function.prototype
5. 如果把Function看成对象,那么Function.__proto__ === Function.prototype