Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lolwah Alroomi and Abdullah Mishari #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/students.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const students: Student[] = [
*/
function getStudentName(student: Student): string {
// write your code here...

return student.name;
return ""; // replace empty string with what you see is fit
}

Expand All @@ -86,7 +86,7 @@ function getStudentName(student: Student): string {
*/
function getCourse(student: Student, courseIndex: number): string {
// write your code here...

return student.courses[courseIndex];
return ""; // replace empty string with what you see is fit
}

Expand All @@ -103,7 +103,7 @@ function getCourse(student: Student, courseIndex: number): string {
*/
function addCourseToStudent(student: Student, course: string): Student {
// write your code here...

student.courses.push(course);
return student;
}

Expand All @@ -116,6 +116,7 @@ function addCourseToStudent(student: Student, course: string): Student {
*/
function countCourses(student: Student): number {
// write your code here...
return student.courses.length;

return -1; // replace -1 with what you see is fit
}
Expand All @@ -133,6 +134,10 @@ function countCourses(student: Student): number {
*/
function removeCourseFromStudent(student: Student, course: string): Student {
// write your code here...
const index = student.courses.indexOf(course);
if (index !== -1) {
student.courses.splice(index, 2);
}

return student;
}
Expand All @@ -156,6 +161,7 @@ function findStudentById(
): Student | undefined {
// write your code here...

return students.find((student) => student.id === studentId);
return undefined; // replace undefined with what you see is fit
}

Expand Down
Loading