Loops
Loops
One of the most common programming concepts that nearly all languages share is that of loops or looping. Some languages call the concept different names and have certain functionality to achieve it, but it exists as a nearly universally-used programming concept.
In JavaScript, there are two main forms of loops: while and for.
While Loops
Similar to conditional statements, a while loop runs any code found within it over and over again until the condition is no longer true. In this example, it will add twice and then stop returning a value because it has reached 6:
For Loops
A for statement is made up of four parts run in order:
- Initial statement
- Condition to check before each loop
- Code inside the loop
- Statement to run after each loop
For statements are most commonly used in situations where the loop will have a fixed or known number of cycles. The initial statement, then, is often set to 0 or another value and acts as the counter for the number of loops.
The condition is what keeps the loop running. For as long as the condition holds true, the for statement will run. As soon as it is no longer true, the looping breaks.
Frequently, the last statement within the for statement will increase the counter created in the initial statement. In most cases, this will be a “++” (plus plus) increment or “--” (minus minus) decrement operator that works as a shorthand to increase or decrease the value by 1 each time.
It's important for loops to have an ending condition. "While" loops only happen while something is true. With "For" loops, you'll want to make sure that the condition that is checked before running will eventually become false (such as adding up to a certain quantity). Otherwise, you'll end up with what's called an infinite loop.
For Loops and Arrays
One of the more common use cases for a for loop is with an array or other data structure where the length is known. Using a for loop to move through an array is easy because the variable used to control the loop can be used as the index to the array.
Because array positions start with 0, a for loop’s variable can also be set at 0 and increase by one per loop. As long as it is less than the length of the array, it will go through all of the values one by one.
Here, for each student in the list, the console will show their name and then increment the index to move to the next student, and so on until it reaches the end.
For-In Loops
JavaScript also allows for using a for loop using a for…in pattern. Instead of using a number for the control of the loop, it will run by setting some variable to the next value within it until there are no more available values.
The for…in pattern is the most useful for objects. Because objects have properties and not indexes where data can be found, the for…in loop can use the name of the property itself as an index to find a value. For example, if you are adding every social media post in a database to the HTML, this lets you code the display for one post and repeat for however many exist.
Play with the Code (Repl.it):
Take a moment to play with the code and concepts in the embedded Repl.it viewer below. You might want to try changing what is done to variables j and k in each iteration or add some new students to the student object, or have it display some other property of the students.