原型模式

    1. var hostess = new FamilyMember('Julia', 17);
    2. console.log(host.introduce()); // "My name is Ourai. I'm 18 years old."
    3. console.log(host === hostess); // false
    4. console.log(host.introduce === hostess.introduce); // true