how to get the index of each item in an array javascript code example
Example: how to get every index of array in javascript
for(const element of array)
console.log(element)
for(const element of array)
console.log(element)