The using of "loops" in real webpage | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

The using of "loops" in real webpage

Would you like to tell me some real condition of using "loops" in webpage. I really wonder because the example just show me about printing number with a range.

18th Aug 2018, 11:45 AM
Ucok Lubis
Ucok Lubis - avatar
3 Respostas
+ 3
Maybe you would want to take input from multiple text fields and apply a certain operation to them before storing it in a database. Or, you have some data with you and you want to display them in different lines, you would do something like this: text += cars[0] + "<br>"; text += cars[1] + "<br>"; text += cars[2] + "<br>"; ā€¦ text += cars[99] + "<br>"; Instead, you can just write: for (let i = 0; i < 100; i++) { text += cars[i] + "<br>"; } The point is that using loops is an efficient way to do something repeatedly, instead of manually writing all the code. Don't worry about its application just yet, that's something you'll learn along the way :)
18th Aug 2018, 11:57 AM
Just A Rather Ridiculously Long Username
0
šŸ‘
18th Aug 2018, 12:41 PM
Ucok Lubis
Ucok Lubis - avatar
0
šŸ‘
20th Aug 2018, 2:41 PM
Just A Rather Ridiculously Long Username