1 function Person() { 2 this.name = 'zs'; 3 } 4 function Zs() { 5 this.age = 20 6 } 7 Zs.prototype = new Person() 8 console.log(Zs.name)