lorenstewart.me
JavaScript Array Methods: Mutating vs. Non-Mutating
12
Covers JavaScript array methods for adding, removing, and replacing items. The focus here is on distinguishing between mutating and non-mutating methods. Read full article
Patrik Engborg
9y agoNot really correct. It’s the binding of the const that is immutable, not the actual array. Push/pop/unshift etc work just fine.