原本是想看这个值相等的,(正在学)
```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

