Merge branch 'master' into patch-2

This commit is contained in:
Angelos Chalaris
2017-12-16 13:38:00 +02:00
committed by GitHub
8 changed files with 38 additions and 9 deletions

View File

@ -4,5 +4,5 @@ Use Array spread operators (`...`) to concatenate an array with any additional a
```js
const ArrayConcat = (arr, ...args) => [...arr,...args];
// ArrayConcat([1], [1, 2, 3, [4]]) -> [1, 2, 3, [4]]
// ArrayConcat([1], [1, 2, 3, [4]]) -> [1, 1, 2, 3, [4]]
```