Learn JavaScript FOR LOOPS in 5 minutes! 🔂

preview_player
Показать описание
00:00:00 introduction
00:00:15 increment
00:02:50 decrement
00:03:36 continue
00:04:59 break
00:05:21 conclusion
Рекомендации по теме
Комментарии
Автор

// for loop = repeat some code a LIMITED amount of times

// INCREMENT
for(let i = 1; i <= 10; i++){
console.log(i);
}

// DECREMENT
for(let i = 10; i > 0; i--){
console.log(i);
}

BroCodez
Автор

hey bro! I learned javascript from your old course, but now that i think about it this is an opprtunity to keep learning even more since i did not finish all the old course. Thank you so much for all the work you do, seriosuly ❤

hunin
Автор

I took a google front end dev course, but Bro code did a better teaching of "for loop" better than the Google tutor!

AvidAfrican
Автор

This helps alot no cap i have a hands on tomorrow wish me luck guys

ZIDNE
Автор

Thank you so much for this video! I'm learning JS using The Comprehensive Guide by Philip Ackerman. Your video made this section on counting loops much easier for me to understand.

lindag
Автор

So, I can use c++ now in JavaScript

for (let c = 0; c < dataOld.length; c++) {

mikkymikaso
Автор

<*_> This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal. <_*>

piotrmazgaj
Автор

Hi brocode, i love your videos, can i get a hi bro?

SavageAk