What is the output of the following code?
class Person {
constructor(name) {
this.name = name;
}
getName() {
return this.name;
}
}
const ana = new Person('Ana');
console.log(ana.getName());
What is the output of the following code?
class Person {
constructor(name) {
this.name = name;
}
getName() {
return this.name;
}
}
const ana = new Person('Ana');
console.log(ana.getName());