DEV Community

Discussion on: 12 Must Know Array Methods for the Next Interview - JavaScript

Collapse
 
julians300 profile image
Julian Salas

It's worth noting, that .map, .filter and .reduce return a new array. The other methods mutate the array so keep that in mind in your next interview.

Collapse
 
tanuka16 profile image
Tanuka Das

Thanks!