Question: Add a throw statement to the processNumbers function that throws the message An element is not a number. if one of the elements in numberList

Add a throw statement to the processNumbers function that throws the message "An element is not a number." if one of the elements in numberList is not a number. Hint: The function isNaN() returns true if the parameter is not a number.

function processNumbers(numberList) { // Code will be tested with different values of numberList var result = 0;

for (var index = 0; index < numberList.length; index++) { /* Your solution goes here */ result += numberList[index] * 1.3 * index; }

return result; }

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!