Forgetting that sort() modifies the original array
Using sort() on numbers without a compare function
Confusing splice() (mutates) with slice() (copies)
Using forEach() when map() or filter() is more appropriate
Not providing an initial value to reduce()
When in doubt, use non-mutating methods and spread to copy.