JavaScript Arrays Worksheet

Question 1

What is the term for items that are stored in an array?

Elements, not to be confused with HTML elements.

Question 2

The position number of an item in an array is called what?

Index number.

Question 3

What is the index of the first value/element in an array?

0

Question 4

True or False - The length of an array is always one greater than it's highest index.

True, the first item in an array is on the index number of 0 meaning the array stores 1 item for a total length of 1.

Coding Problems

Coding Problems - See the 'script' tag below this h3 tag. You will have to write some JavaScript code in it.

You'll use the form below in one of the coding problems: