Array ↔ ordered sequence of elements of any type (Primitive || Object)
Array
Global Object Prototype for Array data type
resizable
can contain mix of different data types
Zero-Index
number system to assign index sequence from 0
References
shallow copy↔ one level deep in a cloned Array/ObjectArray↔ Global Object Prototype for Array data type.slice()↔ArrayInstance Method to return newshallow copy portion of Array.flat()↔ to return new Array with sub-array elements moved up to optional depth_.reverse(array)↔ to return new Array with reversed indexArray.from()↔ to return new ArrayInstancefromiterable (or array-like) ObjectRest Parameter↔...JS Syntax prefix Identifier to receive Array with arb remaining args_.uniq(array)↔ to return new duplicate-free ArrayAdjacency Matrix↔ 2D Binary Matrix (as Array) to rep of Graph as # Nodes===# row/col & fill 1 for each EdgeString Interpolation↔ JS Syntax to insert value Expression intostring/ArrayBinary Search↔ Algo to search element in pre-sorted Array by halving with Logarithmic Complexity