QuestenaPractice that shows what to review next
Question 117

A loop starts i at 0, increments by 1, and uses i <= items.length while intending to process only valid array indexes. What is the bug?

  1. It performs one extra iteration at index items.lengthCorrect answer
  2. It skips index 0
  3. It visits only even indexes
  4. It stops before the final valid index

Explanation

The less-than-or-equal condition admits i when it is exactly equal to the array length, causing one extra iteration beyond the final valid index. Replacing it with the half-open test i < items.length excludes that out-of-range pass.

Continue with this test

Start practice
Question 117: A loop starts i at 0, increments by 1, and uses i <=… · JavaScript Fundamentals · Questena