get 및 set을 능숙하게 사용하면 객체 속성을 직접 조작하여 읽고 쓸 수 있으므로 프로그래밍 효율성이 크게 향상됩니다.
var test = {
_Name : null,
_Age : 0,
//읽고 쓰기 of _Name
set name(name) {this._Name = name;},
get name() {return this._Name;},
//_Age
set age 읽기 및 쓰기( age) {this._Age = age;},
get age() {return this._Age;}
}
alert(test.name " " test.age);//bull 0
test.name = 'lucy';
test.age = 20
alert(test.name " " test.age);//lucy 20