An array is a special variable that can hold more than one value. Arrays use numbered indexes starting from 0. Arrays are objects in JavaScript.
push() — Add to endpop() — Remove from endshift() — Remove from startunshift() — Add to startmap() — Transform each elementfilter() — Filter elementsreduce() — Reduce to single valuefind() — Find first matchincludes() — Check if existssort() — Sort arrayEdit the code below and click Run to see the result live.