For Loop & Debugging ----------- Class - 25

preview_player
Показать описание
In computer science, a for-loop (or simply for loop) is a control flow statement for specifying iteration, which allows code to be executed repeatedly. ... For-loops are typically used when the number of iterations is known before entering the loop.
Рекомендации по теме
Комментарии
Автор

Task Successfully Complete:-

for(var i=0; i<100;i++){
if(i%2==1){
console.log(i);
}
}

Ans:
1
3
5
7
9
11


knowthyself
Автор

your videos are getting interesting. keep it up brother!

learnwithanik