✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will happen, if the following JavaScript code is executed?var count =0;
while (count <10)
{
console.log(count);
count++;
}