How many properties does this Student class have? class Stud…

How many properties does this Student class have? class Student {      fullName: string;      constructor (public firstname: string, public middleInitial: string, public lastName: string) {              this.fullName = firstName + ” ” + middleInitial + ” ” + lastName;      }