Skip to content

Instantly share code, notes, and snippets.

@long-kr
Created February 15, 2022 22:59
Show Gist options
  • Save long-kr/09e1e90dee1ce8299f417af04c145f63 to your computer and use it in GitHub Desktop.
Save long-kr/09e1e90dee1ce8299f417af04c145f63 to your computer and use it in GitHub Desktop.
check grade basic
function gradeQuiz(studentAnswers, teacherAnswers){
let match = 0;
for(let i = 0; i < studentAnswers.length; i++ ){
if(studentAnswers[i] == teacherAnswers[i])
match++;
}
return match;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment