© 2023 Hashnode
#feelfreetocode
The Problem 😒 : Check the code given below 👇 class Student { constructor(private firstName: string, private lastName: string) {} getFullName() { return `${this.firstName} ${this.lastName}`; } } const student = new Student("Vir…