typescript how to get index in forEach code example
Example 1: javascript enumerate with index
const iterable = [...];
for (const [index, elem] in iterable.entries()) {
f(index, elem);
}
iterable.forEach((elem, index) => {
f(index, elem);
});
Example 2: foreach in javascript
var a = ["a", "b", "c"];
a.forEach(function(entry) {
console.log(entry);
});
var fruits = ["apple", "orange", "cherry"];
fruits.forEach(myFunction);
function myFunction(item, index) {
document.getElementById("demo").innerHTML += index + ":" + item + "<br>";
}