Question: Question 1 1 After the for - loop ends the value of the variable nameFound will be false. Why? var names = [ ' Smith

Question 11
After the for-loop ends the value of the variable nameFound will be false. Why?
var names =['Smith', 'Jones', 'Thomas', 'Wilson', 'Green'];
for(i=0; i names.length; i++){
if(names[i]== 'Thomas')
nameFound = true;
else
nameFound = false;
}
nameFoundwill be assigned a value of true the 3rd time through the loop, but that value will be
overwritten as false for the 4th and 5th times
the if-block test uses only 1 equal sign
C) it is a law that all names must be lower case
Question 1 1 After the for - loop ends the value

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 Programming Questions!