Examlex

Solved

What Is the Output of the Following Code

question 30

Multiple Choice

What is the output of the following code?
Var scores = [92,68,83,95,91,65,77];
Var highScores = scores.filter(gradeA) ;
Function gradeA(value) {
Return value > 90;
}


Definitions:

Related Questions