Report Bug
Qus : Can we nest loops in JavaScript?
Qusक्या हम जावास्क्रिप्ट में लूप्स को नेस्ट कर सकते हैं?

A. Yes, but only two levels deep
B. No, nesting loops is not allowed
C. Yes, we can nest any number of loops
D. Yes, but only with for loops


Solution
C. Yes, we can nest any number of loops



Explanation
JavaScript allows nesting loops without any restrictions on depth or loop type.



Report Bug