Pure Array Modifications: Plain JavaScript vs. Modern JavaScript
When working with Redux or other state managers, you want to keep your code pure. That means no side effects. Instead of updating an array instead you want to return a new copy of the array with the changes applied. This is tricky with JavaScript arrays since it isn’t clear which native functions change the […]
Continue reading