You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for arrays -> they dont go from 1 to 100, but from 0-> 99
filtering -> the testing-case is lazy eg. this works: exports.findStudentName = function findStudentName(students, name) { return students //correct: return students.filter(student => student.name === name) };