Quiz
Practice and assess your knowledge of JavaScript arrays by running quiz examples focused on basic array structures and manipulation techniques to reinforce learning.
We'll cover the following...
We'll cover the following...
Suppose the following array is given:
array = [ 7, 15, 32, 9, '3', '11', 2 ];
Determine the output printed to the Javascript console.
All questions are part of the same program. Each instruction in every question is in sequence with the previous instructions.
1.
console.log( array[3] );
A.
32
B.
9
1 / 8
Run the ...