how to access array index using for each in javascript code example
Example: foreach jas
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));
const array1 = ['a', 'b', 'c'];
array1.forEach(element => console.log(element));