foreach with key and value code example
Example 1: javascript foreach get key and value
myObject ={a:1,b:2,c:3}
Object.entries(myObject).forEach(([key, value]) => {
console.log(key , value);
});
Object.keys(myObject).forEach(key => {
console.log(key , myObject[key])
})
Example 2: foreach in php
$arr = array(
'key1' => 'val',
'key2' => 'another',
'another' => 'more stuff'
);
foreach ($arr as $key => $val){
}
foreach ($arr as $key => $val) :
endforeach;
Example 3: php ofreach
<?php
$a = array(1, 2, 3, 17);
foreach ($a as $index => $v) {
echo "Current value of \$a: $v.\n";
}
?>
Example 4: js foreach key value
Object.keys(obj).forEach(function (key) {
});