Q. What will happen, if the following JavaScript code is executed?
Code:var count =0;
while (count <10)
{
console.log(count);
count++;
}
β
Correct Answer: (C)
The values of count variable are logged or stored in a particular location or storage