for (const v of ['a', 'b', 'c']) { console.log(v) } // get index for (const [i, v] of ['a', 'b', 'c'].entries()) { console.log(i, v) }