Answers for "foreach loop"

18

javascript example of foreach loop

var colors = ["red", "blue", "green"];
colors.forEach(function(color) {
    console.log(color);
});
Posted by: Guest on July-19-2019
6

foreach loop javascript

const numList = [1, 2, 3];

numList.forEach((number) => {
  console.log(number);
});
Posted by: Guest on October-05-2020
1

php ofreach

<?php

$a = array(1, 2, 3, 17);

foreach ($a as $index => $v) {
    echo "Current value of \$a: $v.\n";
}

?>
Posted by: Guest on April-23-2020
8

forEach

const arraySparse = [1,3,,7]
let numCallbackRuns = 0

arraySparse.forEach((element) => {
  console.log(element)
  numCallbackRuns++
})

console.log("numCallbackRuns: ", numCallbackRuns)

// 1
// 3
// 7
// numCallbackRuns: 3
// comment: as you can see the missing value between 3 and 7 didn't invoke callback function.
Posted by: Guest on April-18-2020
0

ForEach loop

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

foreach loop

foreach ($array as $value)
{

  code to be executed;

 }
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language