javascript two value array code example
Example 1: array
// An array in javascript is basicly a data structure set out like this:
const MyArray = {"Object1", "Object2", "Object3"};
Example 2: create array with number js
var foo = new Array(45); // create an empty array with length 45