call an array in a function javascript code example
Example 1: what are the two ways to create an array in javascript examples?
let scores = new Array(9,10,8,7,6);
Example 2: array in js
function Array() { return []; }
alert(Array(1, 2, 3)); // An empty alert box