Question: Which of the following array methods will correctly complete the following segment of code's last line designated with the underscores that will return a new

Which of the following array methods will correctly complete the following segment of
code's last line designated with the underscores
that will return a new array named
statusReport which will contain the course status of any array of point total grades.
An example array is provided as points.
const points =[100,88,94,78,84,69];
function convertPointsToStatus (pointTotal){
let status = 'Not Complete';
if (pointTotal 93){
status = 'Excellent';
} else if (pointTotal >=70){
}
status = 'Complete';
}
return status;
const statusReport = points
(convertPointsToStatus);
sort
filter
reduce
map
 Which of the following array methods will correctly complete the following

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!