Vidyalelo
JavaScript · Q39

Basic And Variables

Programming · JavaScript · question 39

Q39

Consider the following statements var count = 0; while (count < 10) console.log(count); count++; In the above code snippet, what happens?

A.
The values of count is logged or stored in a particular location or storage
B.
The value of count from 0 to 9 is displayed in the console
Answer
C.
An error is displayed
D.
An exception is thrown

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board