惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
L
LangChain Blog
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
A
About on SuperTechFans
J
Java Code Geeks
量子位
博客园 - 三生石上(FineUI控件)
博客园 - Franky
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
D
DataBreaches.Net
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Types of loops in JS
Annapoorani Kadhiravan · 2026-06-14 · via DEV Community

Programming is all about solving problems efficiently. Two concepts that play a major role in writing reusable and efficient programs are loops and functions.

Loops help us perform repetitive tasks without writing the same code again and again, whereas functions help us organize code into reusable blocks.

Let's understand these concepts in detail.


Why Do We Need Loops?

Suppose we want to print "Hello" five times.

Without loops, we would write:

console.log("Hello");
console.log("Hello");
console.log("Hello");
console.log("Hello");
console.log("Hello");

Although this works, it violates one of the fundamental principles of programming:

Don't Repeat Yourself (DRY)

Repeating code:

  • Increases the number of lines.
  • Makes maintenance difficult.
  • Introduces more chances for errors.

Loops solve this problem by allowing us to execute the same block of code multiple times.


Types of Loops in JavaScript

JavaScript provides three looping statements:

Loop Type Category
while Entry-Check Loop
for Entry-Check Loop
do...while Exit-Check Loop

Entry-Check Loop / Entry-Controlled Loop

In entry-Check loops, the condition is checked before executing the loop body.

If the condition is false initially, the loop body never executes.

Examples:

  • while loop
  • for loop

Exit-Check Loop / Exit-Controlled Loop

In an exit-Check loop, the loop body executes first and then checks the condition.

Therefore, the body executes at least once.

Example:

  • do...while loop

Components of Every Loop

Every loop generally consists of three parts:

1. Initialization

Determines where the loop starts.

let i = 1;


2. Condition

Determines whether the loop should continue executing.

i <= 5


3. Increment or Decrement

Updates the loop variable after each iteration.

i++;

or

i--;


1. while Loop

The while loop repeatedly executes a block of code as long as the condition remains true.

Syntax

while(condition)
{
    // statements
}


Example: Print Numbers from 1 to 5

let i = 1;

while(i <= 5)
{
    console.log(i);
    i++;
}

Output

1
2
3
4
5


Working of while Loop

Iteration 1:

i = 1
1 <= 5 → true
Print 1
i becomes 2

Iteration 2:

i = 2
2 <= 5 → true
Print 2

This process continues until:

i = 6
6 <= 5 → false

At that point, the loop terminates.


Infinite Loop

An infinite loop occurs when the condition never becomes false.

Example:

let i = 1;

while(i <= 5)
{
    console.log(i);
}

Output:

1
2
3
4
5
...

The loop never stops because i++ is missing.

Infinite loops consume CPU and memory resources and may eventually crash the program.


2. for Loop

The for loop is considered the compact form of the while loop because initialization, condition, and increment are written in a single line.

Syntax

for(initialization; condition; increment)
{
    // statements
}


Example

for(let i = 1; i <= 5; i++)
{
    console.log(i);
}

Output

1
2
3
4
5


while Loop vs for Loop

while Loop

let i = 1;

while(i <= 5)
{
    console.log(i);
    i++;
}

for Loop

for(let i = 1; i <= 5; i++)
{
    console.log(i);
}

Both produce the same output.

The difference lies mainly in readability.


Special Forms of for Loop

Infinite Loop

for(;;)
{
    console.log("Hi");
}

Output:

Hi
Hi
Hi
...

Since no condition is provided, JavaScript assumes it is always true.


Explicit Infinite Loop

for(;true;)
{
    console.log("Hi");
}

Output:

Hi
Hi
Hi
...


No Iteration

for(;false;)
{
    console.log("Hi");
}

Output:

No output.

Because the condition is false initially.


When Should We Use while and for?

Use while Loop

When the number of iterations is unknown.

Examples:

  • Reading data until a valid input is entered.
  • Waiting for a user action.
  • Processing files until end-of-file is reached.
while(password !== correctPassword)
{
    // ask again
}


Use for Loop

When the number of iterations is known.

Examples:

  • Print numbers from 1 to 100.
  • Traverse arrays.
  • Display table values.
for(let i=1;i<=100;i++)
{
    console.log(i);
}


do...while Loop

The do...while loop executes the body first and checks the condition later.

Syntax

do
{
    // statements
}
while(condition);


Example

let i = 1;

do{
    console.log(i);
    i++;
}
while(i <= 5);

Output

1
2
3
4
5


Why Is It Called Exit-Controlled / Exit-check?

Because the condition is checked after executing the loop body.

Therefore, the body executes at least once.


Curly Braces in JavaScript

Curly braces define a block of statements.

Without braces, only the first statement belongs to the loop or if statement.

Example:

let i = 5;

if(i == 4)
    console.log("Hello");

console.log("Bye");

Output:

Bye

Because:

if(i == 4)
{
    console.log("Hello");
}

console.log("Bye");


Multiple Statements Using Curly Braces

if(i == 4)
{
    console.log("Hello");
    console.log("Bye");
}

Now both statements belong to the if block.


Infinite Loop Due to Missing Braces

let i = 5;

while(i >= 1)
    console.log("Hello");

console.log("Bye");

Output:

Hello
Hello
Hello
...

Notice that:

console.log("Bye");

is outside the loop.

Also, i never changes, causing an infinite loop.


Functions in JavaScript

Functions are reusable blocks of code.

They are considered the building blocks of programs.

Functions help:

  • Reduce code duplication.
  • Improve readability.
  • Increase maintainability.
  • Promote modular programming.
  • Reuse code multiple times.

Creating a Function

function add(i, j)
{
    let result = i + j;
    console.log(result);
}

add(10,10);

Output:

20


Parameters and Arguments

Parameters

Variables declared in the function definition.

function add(i, j)

i and j are parameters.


Arguments

Values passed while calling the function.

add(10,10);

Here:

  • 10 and 10 are arguments.

Real-Life Analogy: Biriyani Function

Think of a function like a recipe.

function biriyani(riceContainer, masalaContainer, container)
{
    console.log("Biriyani ready");
}

Calling:

biriyani("rice", "masala", "chicken");

supplies the ingredients.


Calling Without Arguments

biriyani();

Internally:

riceContainer = undefined
masalaContainer = undefined
container = undefined

If printed:

function biriyani(riceContainer, masalaContainer, container)
{
    console.log(riceContainer);
    console.log(masalaContainer);
    console.log(container);
}

biriyani();

Output:

undefined
undefined
undefined


Passing Actual Values

biriyani("BasmatiRice", "Masala", "Mutton");

Output:

BasmatiRice
Masala
Mutton


Summary

Loops

  • while → Entry-controlled loop / Entry-Check loop.
  • for → Entry-controlled loop / Entry-check loop.
  • do...while → Exit-controlled loop / Exit-check loop.
  • Infinite loops occur when conditions never become false.
  • Curly braces group multiple statements.

Functions

  • Functions are reusable blocks of code.
  • Parameters receive values from arguments.
  • Missing arguments become undefined.
  • Functions improve readability and modularity.

References
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Loops_and_iteration?utm_source=chatgpt.com
https://javascript.info/while-for?utm_source=chatgpt.com
https://javascript.info/function-basics?utm_source=chatgpt.com
https://www.w3schools.com/js/js_loop_for.asp?utm_source=chatgpt.com
https://www.w3schools.com/js/js_functions.asp?utm_source=chatgpt.com