Learning Center
Learning Center
  • HTML
  • CSS
  • JAVASCRIPT
  • Bootstrap
  • React
  • jQuery
  • NodeJs
  • Sql
  • MySql
  • Python
  • OpenVPN Setup
  • Log In
Coding Choice Home About Contact ☰

  1. You are here
  2. Home
  3. javascript
  4. loops

Sidebar
  • Introduction to JS
  • Getting Started with JS
  • Variables in JS
  • Data Types in JS
  • Operators in JS
  • Conditional Statements in JS
  • Loops in JS
  • Functions in JS
  • Objects and Arrays in JS
  • DOM Manipulation in JS
  • Promises in JS
  • Share via
    • Share via...
    • Twitter
    • LinkedIn
    • Facebook
    • Pinterest
    • Telegram
    • WhatsApp
    • Yammer
    • Reddit
    • Teams
  • Send via e-Mail
  • Print
  • Permalink

Loops in JS

Loops

For Loop:

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

While Loop:

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