235p ~245p 레코드 캡슐화하기 organization = {name: "애크미 구스베리", country: "GB"}; //------------------------------------------------- class Organization { #name; #country; constructor(data) { this.#name = data.name; this.#country = data.country; } get name() {return this.#name;} set name(arg) {this.#name = arg;} get country() {return this.#country;} set country(arg) {this.#country = arg;} } 대부분의 프로그래밍 언어는 ..