AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# get和set ![](https://img.kancloud.cn/2f/98/2f982f0acb53fb7e20ac4bf42c5547e6_517x582.png) ```javascript let person1 = { _time: 'today', _age: 16, // _time只读 get time() { return this._time; }, // set time(val){ // this._time = val // }, get age() { return this._age }, set age(val) { this._age = val; } } console.log(person1._time + ' and ' + person1.age); // today and 16 person1.time = '不快乐'; person1._age = 18; // _time是可读属性,无法修改成功 console.log(person1.time + ' and ' + person1.age); // today and 18 console.log(person1._time + ' and ' + person1._age); // today and 18 ```