About 369,000 results
Open links in new tab
  1. Loops in Programming - GeeksforGeeks

    Jul 23, 2025 · What are Loops in Programming? Loops, also known as iterative statements, are used when we need to execute a block of code repetitively. Loops in programming are control …

  2. Looping code - Learn web development | MDN

    Dec 16, 2025 · Here we'll look at the loop structures available in JavaScript that handle such needs. An understanding of HTML and the fundamentals of CSS, familiarity with JavaScript …

  3. What is a Loop? - W3Schools

    What is a Loop? A loop runs the same code over and over again, as long as the condition is true. The simulation below uses a loop to roll dice until the result is 6, counting how many times the …

  4. C for Loop (With Examples) - Programiz

    In programming, loops are used to repeat a block of code. In this tutorial, you will learn to create for loop in C programming with the help of examples.

  5. A Beginner's Guide to Loops - DEV Community

    Nov 30, 2024 · Loops are one of the most important concepts to understand when learning programming. They are control flow statements that allow you to repeat a block of code …

  6. Review: Looping (article) - Khan Academy

    To save ourselves from writing all that code, we can use a loop. JavaScript has two kinds of loops, a while loop and a for loop. A while loop is a way to repeat code until some condition is …

  7. Code.org Tool Documentation

    Whenever you are counting, you need a variable to keep track of the count. The first part of the for loop sets up the variable, often called i, that will be used to count the number of times the loop …

  8. What Are Loops in Computer Programs? - ThoughtCo

    Apr 30, 2025 · Loops repeat actions until a condition is met, making programming tasks more efficient. There are different types of loops, like 'for', 'while', and 'do while', each with unique uses.

  9. What Even Is a Loop? A Beginner’s Guide Without the Jargon

    Apr 17, 2025 · New to coding? Learn what loops are in programming with real-life examples and simple explanations—no jargon, just painless learning!

  10. How Loops Work in Programming with Examples

    Understand how loops work in programming, with easy examples of for and while loops in Python and JavaScript to automate tasks.