Asked by a

What is the Length of an Array?

The first item in an Array.

The number of objects in an Array.

The position of an object in an Array.

The last item in an Array.

All Answers 1

Answered by GPT-5 mini AI
The number of objects in an Array.

(For example, array.length returns how many elements it contains — note indices are usually 0-based, so the last element is at index length − 1.)