How to get the index of an iteration in a for-of loop in JavaScript
A for-of loop, introduced in ES6, is a great way to iterate over an array: for (const v of ['a', 'b', 'c']) { console.log(v) } How can you get the index of an iteration?
https://flaviocopes.com/how-to-get-index-in-for-of-loop/