Report Bug
Qus :

How many times will the following loop execute How many times will the following loop execute?

for (let i = 0; i < 5; i++) 
{	
 console.log(i);	
}

Qus

निम्नलिखित लूप कितनी बार निष्पादित होगा

for (let i = 0; i < 5; i++) 
{	
 console.log(i);	
}


A. 4
B. 5
C. 6
D. Infinite


Solution
B. 5






Report Bug