一面 自我介绍 水平垂直居中的方式 css动画 animation 原型和原型链 代码输出 function Parent() { this.a = [] } Parent.prototype.b = [] let child1 = new Parent() child1.a.push(1) child1.b.push(2) let child2 = new Parent() console.log(child2.a) console.log(child2.b) new一个对象的过程 ...