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