This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
en:web_development:lists:javascript [2022/03/13 10:20] mag [Iterating Arrays] |
en:web_development:lists:javascript [2023/08/16 09:33] (current) |
||
---|---|---|---|
Line 4: | Line 4: | ||
In this exercise you will use an array to store a list of items, use a for loop to repeat a block of code, and use an if statement to run different instructions based on user input. | In this exercise you will use an array to store a list of items, use a for loop to repeat a block of code, and use an if statement to run different instructions based on user input. | ||
==== Setup ==== | ==== Setup ==== | ||
- | * We'll use the first file you created in this lesson called ' | + | * We'll use the first file you created in this lesson called '[[https:// |
* Create a file called ' | * Create a file called ' | ||
* We'll also return to [[https:// | * We'll also return to [[https:// | ||
Line 103: | Line 103: | ||
==== Iterating Arrays ==== | ==== Iterating Arrays ==== | ||
* So now that you understand how for loops work, we can apply it to an array. | * So now that you understand how for loops work, we can apply it to an array. | ||
+ | * Open your jsfiddle tab again. | ||
* Let's edit the for loop you have already. | * Let's edit the for loop you have already. | ||
< | < | ||
Line 159: | Line 160: | ||
}</ | }</ | ||
* The basic structure of this code is < | * The basic structure of this code is < | ||
- | * We have a condition inside the < | + | * We have a condition inside the < |
* In this case, our condition is < | * In this case, our condition is < | ||
* Since we've just defined < | * Since we've just defined < | ||
Line 207: | Line 208: | ||
}</ | }</ | ||
* Run that and try it out for yourself. | * Run that and try it out for yourself. | ||
+ | |||
+ | ==== Final Code ==== | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
[[en: | [[en: |