make a new array javascript code example
Example 1: javascript to array
Array.from("Hello"); // ["H", "e", "l", "l", "o"]
Example 2: make list in javascript
var scores = Array(10);
Array.from("Hello"); // ["H", "e", "l", "l", "o"]
var scores = Array(10);