how to create and array in javascript code example
Example 1: javascript declare array
var array = []
Example 2: what are the two ways to create an array in javascript examples?
let scores = new Array(9,10,8,7,6);
var array = []
let scores = new Array(9,10,8,7,6);