Answers for "what is foreach loop"

11

javascript foreach index

users.forEach((user, index)=>{
	console.log(index); // Prints the index at which the loop is currently at
});
Posted by: Guest on June-19-2020
23

foreach jas

const array1 = ['a', 'b', 'c'];

array1.forEach(element => console.log(element));
Posted by: Guest on January-10-2020
0

ForEach loop

const a = ["a", "b", "c"];
a.forEach((entry) => {
    console.log(entry);
});
Posted by: Guest on July-15-2021
-2

foreach loop

foreach ($array as $value)
{

  code to be executed;

 }
Posted by: Guest on June-08-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language