ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的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 ```