The unshift() method is used to add one or more elements to the beginning of an array.
- Adds elements to the start (index 0) of an array
- Modifies the original array
- Returns the new length of the array
- Slower than push() for large arrays (because elements are re-indexed)
