Class Student { constructor(name,age,enrolled,score) { this.name = name // 이름 this.age = age // 나이 this.enrolled = enrolled // 등록 this.score = score // 점수 }}// 아래 예시에 활용하기위한 Student Class를 만들었습니다. const students =[ new Student('학생1',30,true,70), new Student('학생2',25,false,65), new Student('학생3',20,true,45), new Student('학생4',28,true,90..