So what I am doing is trying to understand what const [,] or const [_,,,] does in this for of loop in typescript or javascript. What are these?
function getArr() {
return ['a','b', 'c']
}
for (const [,] of getArr()) {
}
for (const [_,,,] of getArr()) {
}