Choosing the Right Visibility Modifier
class Person {
#name;
constructor(name) {
this.#name = name;
}
get name() {
return this.#name.toUpperCase();
}
}
class Person {
#name;
constructor(name) {
this.#name = name;
}
get name() {
return this.#name.toUpperCase();
}
}