Add "More Information"

This commit is contained in:
Enéas Marques
2018-10-12 16:58:59 -03:00
committed by Kristofer Koishigawa
parent 74086f9f8a
commit 059a4be4d2

View File

@ -17,4 +17,7 @@ const arr_1 = [1, 2, 3, 4]
const arr_2 = [5, 6, 7, 8]
const arr_final = [...arr_1, ...arr_2]
// arr_final = [1, 2, 3, 4, 5, 6, 7, 8]
```
```
### More Information:
<a href='https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Operators/Spread_operator' target='_blank' rel='nofollow'>MDN</a>