how to create array js 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: array in js
function Array() { return []; }
alert(Array(1, 2, 3)); // An empty alert box