Select the correct way of creating an array with the new keyword.
A)
let names = new [5];
B)
let names = new Array(2);
C)
let names = new Array[7];
D)
let names = Array(3);Select the correct way of creating an array with the new keyword.
A)
let names = new [5];
B)
let names = new Array(2);
C)
let names = new Array[7];
D)
let names = Array(3);Create a free account to access the full topic