PHP Beginners

JavaScript For Loop | complete reference

Javascript loop statements or the type of the loops like javascript for loop is used for executing the block of the code...

Written by Bikash · 50 sec read >

Javascript loop statements or the type of the loops like javascript for loop is used for executing the block of the code number of times.

Syntax: JavaScript For Loop

  • Statement 1 is executed one time before the execution of code blocks.
  • In statement 2 you put the condition for the loop.
  • In statement 3, it is executed after the code block has been executed.
javascript for loop

JavaScript For Loop

Loops are very user-friendly when you want to use the same code again and again with different values you can use the JavaScript For Loop.

Iterative Loop Method

An iterative loop method, if you want to print Hello World 5 times using JS,

Using JavaScript For Loop Method

In JavaScript for loop, the code is written once and the loop will be executed that code N number of times which is user put on that.

JavaScript | For/In Loop

In JavaScript Loop, For/In Loop is used for the loop-through properties of an object.

John Man 20

OutPut

JavaScript | For/Of Loop

For Loop Over An Array

Syntax: Loop Over An Array

Example:

John
Doe
Mini

OutPut

Loop Over a String

Using “of” we loop over the strings. Check the below example about that,

J
a
v
a
S
c
r
i
p
t

OutPut

https://en.wikipedia.org/wiki/JavaScript

Happy Coding..!

Was this article helpful?
YesNo
Written by Bikash
My name is Bikash Kr. Panda. I own and operate PHPCODER.TECH. I am a web Programmer by profession and working on more than 50 projects to date. Currently I am working on the web-based project and all the CMS and frameworks which are based on PHP. Profile

One Reply to “JavaScript For Loop | complete reference”

Leave a Reply

Your email address will not be published. Required fields are marked *