From 6b5a5249911ee62ee195a46cc5541ad81cb5ca66 Mon Sep 17 00:00:00 2001 From: Ahmed Magdy Seleem Date: Thu, 2 Apr 2020 01:52:15 +0200 Subject: [PATCH] fix an anchor link error Object.assign() is referring to wrong article, which is Sympol. so I fix it to the right article "objects" with the right section #Cloning and merging, Object.assign --- 1-js/06-advanced-functions/02-rest-parameters-spread/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/02-rest-parameters-spread/article.md b/1-js/06-advanced-functions/02-rest-parameters-spread/article.md index fad6dc5c..f27d8955 100644 --- a/1-js/06-advanced-functions/02-rest-parameters-spread/article.md +++ b/1-js/06-advanced-functions/02-rest-parameters-spread/article.md @@ -227,7 +227,7 @@ So, for the task of turning something into an array, `Array.from` tends to be mo ## Get a new copy of an object/array -Remember when we talked about `Object.assign()` [in the past](https://javascript.info/symbol#symbols-are-skipped-by-for-in)? +Remember when we talked about `Object.assign()` [in the past](https://javascript.info/object#cloning-and-merging-object-assign)? It is possible to do the same thing with the spread operator!