

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following statementsvar count = 0;while (count < 10){.log(count);count++;}In the above code snippet, what happens? |
A. | he values of count is logged or stored in a particular location or storage |
B. | he value of count from 0 to 9 is displayed in the console |
C. | n error is displayed |
D. | n exception is thrown |
Answer» C. n error is displayed | |