update snippets 32-47

This commit is contained in:
Stefan Feješ
2017-12-25 14:10:38 +01:00
parent 1835d4894d
commit 7b9ec970e2
15 changed files with 65 additions and 20 deletions

View File

@ -6,5 +6,8 @@ Use a new array and concatenate it with the spread input array causing a shallow
```js
const flatten = arr => [ ].concat( ...arr );
// flatten([1,[2],3,4]) -> [1,2,3,4]
```
```js
flatten([1,[2],3,4]) -> [1,2,3,4]
```