Solved

What Would the Browser Display If It Executed the Following

Question 9

Multiple Choice

What would the browser display if it executed the following script
< script type = "text/javascript" >
< !--
For ( var count = 1; count < = 10; ++count )
{
If ( count == 5 )
Break;
}
Document.writeln( count ) ;
//-- >
< /script >


A) Nothing; the script would generate an error.
B) 1
C) 5
D) 10

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions