
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
마지막 메서드 실행에서 ellie; hello! 가 왜 안나오는 거죠?

작성한 코드 및 에러 메세지
class Person {
constructor (name, age){ //생성자
this.name =name; //fields
this.age =age;
}
// method
speak(){
console.log('${this.name}:hello!');
}
}
const ellie = new Person('ellie', 20);
console.log(ellie.name);
console.log(ellie.age);
ellie.speak();
실행 결과
ellie
20
${this.name}:hello!
