From 6362f48f8d53edf32a2452f2a0174de2107495ce Mon Sep 17 00:00:00 2001 From: loumarven Date: Wed, 24 Oct 2018 23:11:29 +0800 Subject: [PATCH] Changed "independant" to "independent" --- 1-js/04-object-basics/01-object/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/01-object/article.md b/1-js/04-object-basics/01-object/article.md index cf161926..eb15654c 100644 --- a/1-js/04-object-basics/01-object/article.md +++ b/1-js/04-object-basics/01-object/article.md @@ -605,7 +605,7 @@ for (let key in user) { } */!* -// now clone is a fully independant clone +// now clone is a fully independent clone clone.name = "Pete"; // changed the data in it alert( user.name ); // still John in the original object