function Cat (name, color) { this.name = name; this.color = color; } // 构造函数 var cat1 = new Cat('大毛', '白色'); // 构造函数的实例对象