CC-07: Array Iteration
Arrays
for (let item of collection) {
// iterating through values,
// DOES NOT SKIP over undefined/skipped indices
}for (let index in collection) {
// iterating through indices,
// SKIPS over undefined/skipped indices
}Code Challenge
Last updated