QuestenaPractice that shows what to review next
Question 40

An empty array is assigned the value "x" at index 3. Which statements are true? Select all that apply.

  1. The new length is 4Correct answer
  2. Indexes 0 through 2 are filled with null
  3. Indexes 0 through 2 are holesCorrect answer
  4. The new length is 1

Explanation

Assigning at index 3 raises length to 4 and leaves indexes 0 through 2 as holes. JavaScript does not automatically fill those skipped positions with null or explicit undefined values.

Continue with this test

Start practice
Question 40: An empty array is assigned the value "x" at index 3. Which… · JavaScript Fundamentals · Questena