From 059a4be4d25ce81b1a4adb6e7d5d20edcc7879fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?En=C3=A9as=20Marques?= Date: Fri, 12 Oct 2018 16:58:59 -0300 Subject: [PATCH] Add "More Information" --- .../guide/english/javascript/es6/spread-operator/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/pages/guide/english/javascript/es6/spread-operator/index.md b/client/src/pages/guide/english/javascript/es6/spread-operator/index.md index b29b924c80..bf202f1aeb 100644 --- a/client/src/pages/guide/english/javascript/es6/spread-operator/index.md +++ b/client/src/pages/guide/english/javascript/es6/spread-operator/index.md @@ -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] -``` \ No newline at end of file +``` +### More Information: + +MDN