Answers for "loop though numeric array"

PHP
1

js loop through array

// ES6 for-of statement
for (const color of colors){
    console.log(color);
}

// Array.prototype.forEach
const array = ["one", "two", "three"]
array.forEach(function (item, index) {
  console.log(item, index);
});

// Sequential for loop
for (var i = 0; i < arrayLength; i++) {
    console.log(myStringArray[i]);
    //Do something
}
Posted by: Guest on July-27-2020
0

php loop through array

foreach($array as $item=>$values){
     echo $values->filepath;
    }
Posted by: Guest on July-12-2020

Browse Popular Code Answers by Language