ES6 prototype

原型

原型 === 共用属性

var a = [1,2,3]
a.push(4)

push是哪来的?

a.push(4) 
==> a.push.call(a,4) 
==> window.Array.prototype.push.call(a,4)
原型

你可能感兴趣的:(ES6 prototype)