__proto__ 和 prototype返回false

    原本是想看这个值相等的,(正在学)

```javascript
        <script>
            function mc() {}
            
            var  test_prototypes=new mc();
            var t=new mc();
            
            alert(t.prototype);
            alert(t.__proto__);
            
            alert(t.__proto__==t.prototype);
            alert(test_prototypes.__proto__===test_prototypes.prototype);
            
            
        </script>


但无论用哪个我这里的返回值都是false

![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/74798868175618.png "#left")

![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/008729681756158.png "#left")

类(也就是构造函数)mc才有 prototype 属性,实例对象没有 prototype 属性
实例对象test_prototypes的 t 才有 __proto__ 属性,类(也就是构造函数)没有 __proto__ 属性
实例对象的 __proto__ 会等于,创建实例对象的类(也就是构造函数)的prototype

        function mc() {}
        
        var  test_prototypes=new mc();
        var t=new mc();
        
        alert(mc.prototype);
        alert(t.__proto__);
        
        alert(t.__proto__==mc.prototype);
        alert(t.__proto__===test_prototypes.__proto__);