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
This commit is contained in:
Ahmed Magdy Seleem 2020-04-02 01:52:15 +02:00 committed by GitHub
parent 2a6e87a6e9
commit 6b5a524991
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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!