Question: Which of the following array methods will correctly complete the following segment of code's last line designated with the underscores ( _ _ _ _

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);

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!