Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
The for Loop
Whenever we need to perform a task or an action repeatedly, we use loops. The first type of loop we'll be looking at is the for loop.
For example if we need to add up all the number from 1 to 5 and log the result to the console, we can do it like this;
How about if need to add all the numbers from 1 to 100? We could do it by writing each number let sum = 1 + 2 + 3 + 4 ...
etc. but this would take a long time.
This is where we can use a loop, a for loop to be exact:
Read more about the for loop here
Hint: You can write the expression sum = sum + i
as sum += i
Notice the ++
operator? ++
means, add 1 to the value. so, i++
is the same as i = i + 1
Now, use a for loop to set sum equal to the sum of all multiples of 5 between 0 and 50.