class Person {
    constructor(name) {
        this.name = name;
    }
    getName() {
        return this.name;
    }
}