arr.__proto__ === Array.prototype //true,
arr.__proto___.constructor === Array //true,
因此 arr.__proto__.constructor.prototype === Array.prototype 也仍然为 true。
老师在7分37左右的时候,应该是说在arr.prototype上加customFn1这个方法,别的实例没有这个方法,但如果在arr.__proto__上加customFn1,别的实例也是有的。
arr.__proto___.constructor === Array //true,
因此 arr.__proto__.constructor.prototype === Array.prototype 也仍然为 true。
老师在7分37左右的时候,应该是说在arr.prototype上加customFn1这个方法,别的实例没有这个方法,但如果在arr.__proto__上加customFn1,别的实例也是有的。
2016-11-29
讲得好好第一次看到这么有用的课程。希望老师可以多讲一些类似的课程,要是能把javascript的剩下两个难点都讲了,就好了。
2016-11-25