Popular JavaScript Array Methods

The greatest hits, all in one place

Ariel Jakubowski
Better Programming
Published in
3 min readNov 4, 2019

--

Before diving into the array methods, there are two terms that must be clarified:

  • A destructive method alters original arrays.
  • Non-destructive methods do not alter original arrays — they create a copy of the original array.

--

--