What will happen, if the following JavaScript code is executed?
var count =0;
while (count <10)
{
console.log(count);
count++;
}
a) An error is displayed
b) An exception is thrown
c) The values of count variable are logged or stored in a particular location or storage
d) The value of count from 0 to 9 is displayed in the console