AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# 即使对象初始化 ```javascript /* var obj = { name:"默认", age:"默认", showName:function(){ console.log("姓名:" + this.name); }, showAge:function(){ console.log("年龄:" + this.age); }, init:function(name,age){ this.name = name; this.age = age; } } obj.init("zs",18); console.log(obj.name); console.log(obj.age); */ // 优化 初始化只执行一次 ({ name:"默认", age:"默认", showName:function(){ console.log("姓名:" + this.name); }, showAge:function(){ console.log("年龄:" + this.age); }, init:function(name,age){ this.name = name; this.age = age; this.showName(); this.showAge(); } }).init("zs",18); ```