Skip to content

Commit

Permalink
Merge 6fde93e into 6f463ca
Browse files Browse the repository at this point in the history
  • Loading branch information
SiegfriedEhret committed Dec 20, 2018
2 parents 6f463ca + 6fde93e commit 3c233ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Concepts.md
Expand Up @@ -58,7 +58,7 @@ Reducer's concepts from FP:

```javascript
[{x:1},{y:2},{z:3}].reduce(function(prev, next){
return Object.assign(prev, next);
return Object.assign({}, prev, next);
})
//return {x:1, y:2, z:3}
```
Expand Down

0 comments on commit 3c233ac

Please sign in to comment.