From 2ceaab0f49231114d0b6197a687179fbfa835212 Mon Sep 17 00:00:00 2001 From: Mark Erikson Date: Sat, 4 Feb 2017 20:36:40 -0800 Subject: [PATCH] Add "Immutable Update Patterns" link --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 00a9cde..522ced8 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,8 @@ If you are new to React, try reading these articles in order. Excellent description of what immutability is, how to use use these concepts with React, and pros and cons of managing data immutably. While the title refers to React, most of the writing just deals with plain Javascript concepts. - [Javascript and Immutability](http://t4d.io/javascript-and-immutability/) A description of how to properly immutably update objects and arrays using functions like assign and slice + - [Redux Docs: Structuring Reducers - Immutable Update Patterns](http://redux.js.org/docs/recipes/reducers/ImmutableUpdatePatterns.html) + Useful examples for doing proper immutable updates, including common mistakes, proper updates of nested data, updates for arrays, and more. (Helpful for Redux, but not Redux-specific.) ### Functional Programming - [The Little Idea of Functional Programming](http://jaysoo.ca/2016/01/13/functional-programming-little-ideas/)