Question

Which of the following is the correct way to declare an array?
A) var = new var(10);
B) var = new Array(10);
C) var myArray = new (10);
D) var myArray = new Array(10);

Answer

This answer is hidden. It contains 1 characters.