Skip to main content

Arrayordered 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

  1. shallow copy ↔ one level deep in a cloned Array/Object

  2. ArrayGlobal Object Prototype for Array data type

  3. .slice()Array Instance Method to return newshallow copy portion of Array

  4. .flat() ↔ to return new Array with sub-array elements moved up to optional depth

  5. _.reverse(array) ↔ to return new Array with reversed index

  6. Array.from() ↔ to return new ArrayInstancefromiterable (or array-like) Object

  7. ArrayTS Extended Type for Array

  8. Rest Parameter... JS Syntax prefix Identifier to receive Array with arb remaining args

  9. _.uniq(array) ↔ to return new duplicate-free Array

  10. Adjacency Matrix ↔ 2D Binary Matrix (as Array) to rep of Graph as # Nodes === # row/col & fill 1 for each Edge

  11. String InterpolationJS Syntax to insert value Expression into string/Array

  12. Binary SearchAlgo to search element in pre-sorted Array by halving with Logarithmic Complexity