Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
January 13, 2021 02:16 pm GMT

Back to Basics: Loops in JavaScript

This series discusses the building blocks of JavaScript. Whether you're new to the language, you're preparing for a technical interview, or you're hoping to brush up on some key JS concepts, this series is for you.

The first installment in this series is about loops:

What is a loop?

A loop tells your program to repeatedly do a certain action. The number of times your program should do that action depends on the conditions that you set.

In non-programming terms, let's say you're giving your friend directions to your house. They call you and say that they're on your street, but they don't know which house is yours. You tell them, "keep walking north until you reach the yellow house on the corner". In this statement, "until you reach the yellow house on the corner" is the conditition you've set for your friend. They will continue to walk north until they get to that house, at which point they'll stop walking.

Your friend starts on the same street as your house, and walks north until they reach your house

What would happen if you didn't give your friend the condition? In other words, what would happen if you just said to your friend, "keep walking north"? Your friend would never know when to stop. They would keep walking north way past your house. You can't blame your friend for not finding your house, since you never told them when to stop.

Your friend has walked past your house, and is still going north

This non-programming example illustrates one of the most common issues people encounter when working with loops: the infinite loop. If you don't tell your loop when to stop, the loop will keep going forever. Importantly, if you tell your loop when to stop, but that stopping point could never actually be reached, that also is an infinite loop. Using the same example, let's say you told your friend "keep walking north until you reach the pink house on the corner". Your friend keeps walking north, but no matter how far they walk, they never find a pink house on the corner. Even though you gave your friend an ending point, they never could reach that ending point, so they would (theoretically) keep walking forever.

When working with loops, it's very important that you say when the loop should stop running, and that that ending point can actually be reached.

While loops

One of the most popular loops is a while loop. A while loop is structured like the following:

while (condition) {    statement}
Enter fullscreen mode Exit fullscreen mode

Before the statement is executed, condition is tested. If it evaluates to true, then the statement is executed. As long as condition is true, the statement continues to execute. When condition becomes false, the statement stops executing.

For example, let's say you have a variable called e, which starts out by equaling 0. You want e to keep incrementing (or increasing by 1) as long as e is less than 4.

let e = 0;while (e < 4) {    e++;}
Enter fullscreen mode Exit fullscreen mode

Here is a table breaking down what's going on in the above loop:

ee < 4Loop executes?
0trueyes
1trueyes
2trueyes
3trueyes
4falseno

As long as e < 4 is true, the loop executes. When it becomes false, it does not execute.

It's very easy to accidentally write an infinite loop when working with while loops. For example, if the condition from the above example was e >= 0, then the loop will infinitely execute. e starts at 0, which means the condition is true, and keeps getting bigger, which means the condition will always evaluate to true:

//Infinite looplet e = 0;while (e >= 0) {    e++;}
Enter fullscreen mode Exit fullscreen mode

For loops

Another loop that's widely used is the for loop. A for loop is structured like the following:

for (initialExpression; conditionExpression; incrementExpression) {    statement}
Enter fullscreen mode Exit fullscreen mode

The initialExpression is the first thing that runs. Any variable created in this expression is scoped to the loop (meaning that you cannot refer to this variable from outside of the loop). The initialExpression is usually where a counter is initialized.

The conditionExpression is then evaluated for being either true or false. If it's true, then the statement executes. If it's false, the statement does not execute, and the for loop terminates. If no conditionExpression is listed, then the condition is automatically true.

The incrementExpression runs after the statement executes. Just as the initialExpression usually initializes a counter in a for loop, the incrementExpression usually increments that counter. However, the expression also can decrement the counter (or decrease by 1). At this point, the conditionExpression is evaluated again, and if it's still true, then the for loop continues to execute.

For example, let's create a for loop that logs the phrase "I can count to X" to the console, where X is a number starting at 1, and going to 5. We start by initializing a variable in the initialExpression with let i = 1. Then, we set the conditionExpression to i <= 5. This means that the statement will continue to run as long as i is less than or equal to 5. Finally, we want to increase i by 1 each time the loop executes, so incrementExpression is i++. Note: it's important that each of the expressions is separated by a semicolon, ;.

for (let i = 1; i <= 5; i++) {    console.log("I can count to " + i)}
Enter fullscreen mode Exit fullscreen mode

Here is a table breaking down what's going on in the above loop:

ii <= 5Statement logged
1true"I can count to 1"
2true"I can count to 2"
3true"I can count to 3"
4true"I can count to 4"
5true"I can count to 5"
6false

Infinite loops also happen with for loops. One example of an infinite loop would be using the same example above, but changing the third expression to be i--. i-- means that i keeps decreasing, so i will start at 1, then become 0, then -1, and so on. All the while, i <=5 will continue to evaluate to true, because i will always be less than or equal to 5.

//Infinite loopfor (let i = 1; i <= 5; i--) {    console.log("I can count to " + i)}
Enter fullscreen mode Exit fullscreen mode

Do...while loops

The do...while loop is very similar to the while loop. A do...while loop is structured like the following:

do {    statement} while (condition);
Enter fullscreen mode Exit fullscreen mode

The first thing that happens in this loop is the statement is executed. Once that happens, condition is checked. If condition evaluates to true, the statement executes again. The statement keeps executing until condition evaluates to false. The major difference between the do...while loop and the while loop is that the statement will always be executed at least once.

For example, let's initialize a variable called booksRead to equal 10. We want to log "I read X books this year" to the console, where X is the value of booksRead. We'll then set the condition to be booksRead < 14. Note: in the below example, I use string interpolation when console logging the number of books read this year. String interpolation is done by using template literals in JavaScript.

let booksRead = 10;do {    console.log(`I read ${booksRead} books this year`);    booksRead++;} while (booksRead < 14);
Enter fullscreen mode Exit fullscreen mode

Here is a table breaking down what's going on in the above loop:

booksReadStatement loggedbooksRead < 14
10"I read 10 books this year"true
11"I read 11 books this year"true
12"I read 12 books this year"true
13"I read 13 books this year"true
14false

One way you can create an infinite loop when working with do...while loops is if you don't increment the variable that you're checking in the condition. Using the same example as above, if you never increment booksRead, then booksRead stays at 10 forever, which means the condition, booksRead < 14, will always be true.

//Infinite looplet booksRead = 10;do {    console.log(`I read ${booksRead} books this year`);} while (booksRead < 14);
Enter fullscreen mode Exit fullscreen mode

For...in loops

A for...in loop is used with an object in JavaScript. It's structured like the following:

for (variable in object) {    statement}
Enter fullscreen mode Exit fullscreen mode

A for...in loop iterates a variable over each property (or key) of an object. For each property, the statement is executed. The loop enables you to access each property of an object without knowing the name of the property. for...in loops iterate over the object's properties in an arbitrary order. Therefore, according to MDN documentation, "it is best not to add, modify, or remove properties from the object during iteration, other than the property currently being visited". You also should not use for...in loops with arrays.

For example, let's say you had an object that listed each meal you had that day, and you wanted to console log everything you ate. The object is called foodIAte. Using a for...in loop, you can list the name of each meal, as well as what you ate for that meal.

const foodIAte = {    breakfast: 'eggs',    lunch: 'salad',    dinner: 'pizza'};for(const meal in foodIAte) {  console.log(`For ${meal}, I ate ${foodIAte[meal]}.`);};
Enter fullscreen mode Exit fullscreen mode

Here is a table breaking down what's going on in the above loop:

mealfoodIAte[meal]Statement logged
breakfasteggsFor breakfast, I ate eggs.
lunchsaladFor lunch, I ate salad.
dinnerpizzaFor dinner, I ate pizza.

For...of loops

The last loop is the for...of loop. The for...of loop can be used with iterable objects, which includes arrays, maps, sets, strings, and more. It's structured like the following:

for (variable of iterableObject) {    statement}
Enter fullscreen mode Exit fullscreen mode

The for...of loop iterates over iterableObject, and a statement is executed for the value of each property in iterableObject. While for...in loops iterate over the property name, for...of loops iterate over the property value.

For example, let's say you have an array, and want to console log each value of the array:

const array = [5, 10, 15];for (const value of array) {    console.log(value);}
Enter fullscreen mode Exit fullscreen mode

The above loop would console log 5, 10, 15.

Let's say you have a string, and want to console log each value of the string:

const string = "cat";for (const value of string) {    console.log(value);}
Enter fullscreen mode Exit fullscreen mode

The above loop would console log c, a, t.

Please let me know in the comments if you have any questions or other ways of thinking about loops in JavaScript.

Resources:


Original Link: https://dev.to/alisabaj/back-to-basics-loops-in-javascript-59lo

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To