creating new array javascript code example
Example 1: how to create an array in node js
// Don't need to provide elements directly, but you can
// FIRST OPTION
var myArray = new Array(/*elements1, elements2*/);
// SECOND OPTION
var mySecondArray = [/*element1, element2*/];
Example 2: declare an array nodejs
var arr1 = new Array();
var arr2 = [];
Example 3: make list in javascript
var scores = Array(10);