Damn that was the best description of a for loop I've ever heard - until now each tutorial I've heard just points out they are both loops designed to have more elegant syntax - I never stopped for a second to consider they were purposely made differently. Noob stuff I guess but a great explanation in a short time nonetheless.
@MsCarbonCopy Жыл бұрын
Still here! I was stuck on this and your tutorials help out tremdously!! Thank you!
@projectvibe12264 жыл бұрын
Those tuts were amazing
@optikospoet824810 ай бұрын
Great teaching. Thank you very much
@chrishaunbyrom2 жыл бұрын
Bro you explained it so good so quick … now i get it and can apply it 🙏🏾🙏🏾🙏🏾🙏🏾
@murtazonumanov7833 жыл бұрын
thank you for existing
@brendansullivan48724 жыл бұрын
Awesome video man. I had a quick question. When would you rather use a for loop over a while or do while loop? It seems I havent found a situation where you couldn't use the others for. Thanks again and have a great day.
@ahmadhadwan4 жыл бұрын
im pretty sure that for loops are just easier to read since we put the variable, the condition, and we increment the variable on the same line but other than that there is no difference and you can use whatever you like
@chronosbat3 жыл бұрын
You could be using a for loop for weapons that shoot more than once on 1 click. (Clockwork assault rifle from terraria for example) Using for loops could make the weapon shoot 3 times and it's a lot less messier than using while loops.