1 answer
Best Answer
An ordered collection of values in a single variable.
Example:
Common methods: push(), pop(), map(), filter()
Example:
let colors = ["red", "green", "blue"];colors[0] → "red" (index starts at 0)colors[2] → "blue"Common methods: push(), pop(), map(), filter()