Quizlearn
.app
Which of the following is the correct syntax to create an array in JavaScript?
const myArray[] = [1, 2, 3]
var myArray = new array(1, 2, 3)
let myArray = [1, 2, 3]
Computer Software Exercises are loading ...